123456789101112131415161718192021222324 |
- module.exports = {
- root: true,
- env: {
- node: true
- },
- extends: [
- 'plugin:vue/essential',
- '@vue/standard',
- '@vue/typescript/recommended'
- ],
- globals: {
- $: true
- },
- parserOptions: {
- ecmaVersion: 2020
- },
- rules: {
- 'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
- 'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off',
- 'no-any': [0, { 'ignore-rest-args': 0 }],
- '@typescript-eslint/no-explicit-any': ['off'],
- '@typescript-eslint/camelcase': ['off']
- }
- }
|