-
Notifications
You must be signed in to change notification settings - Fork 15
/
.eslintrc.js
46 lines (46 loc) · 1.46 KB
/
.eslintrc.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
module.exports = {
// parser: 'vue-eslint-parser',
root: true,
env: {
node: true,
},
extends: [
'eslint:recommended',
'plugin:@typescript-eslint/recommended',
'plugin:vue/vue3-essential',
'@vue/typescript/recommended',
'@vue/prettier',
'@vue/eslint-config-typescript',
'@vue/eslint-config-prettier',
'./packages/vueye-table/.eslintrc-auto-import.json',
],
parserOptions: {
parser: '@typescript-eslint/parser',
ecmaVersion: 'latest',
ecmaFeatures: {
jsx: false,
},
},
rules: {
'no-console': 'error',
'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
'vue/multi-word-component-names': 'off',
'vue/valid-v-slot': 'off',
'no-use-before-define': 'off',
'prettier/prettier': ['warn', { endOfLine: 'auto' }],
'@typescript-eslint/no-inferrable-types': 'off',
// '@typescript-eslint/indent': ['warn', 8],
'@typescript-eslint/no-empty-function': 'off',
'@typescript-eslint/no-var-requires': 0,
'@typescript-eslint/no-explicit-any': 0,
'@typescript-eslint/no-use-before-define': ['error', { functions: false, variables: false, classes: false }],
},
overrides: [
{
files: ['**/__tests__/*.{j,t}s', '**/tests/unit/**/*.spec.{j,t}s'],
env: {
jest: true,
},
},
],
}