-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.eslintrc.js
42 lines (42 loc) · 1.2 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
module.exports = {
parser: 'vue-eslint-parser',
root: true,
env: {
node: true,
},
extends: [
'eslint:recommended',
// 'plugin:@typescript-eslint/recommended',
'plugin:vue/vue3-recommended',
// '@vue/typescript/recommended',
'@vue/prettier',
],
// parserOptions: {
// parser: '@typescript-eslint/parser',
// ecmaVersion: 2020,
// ecmaFeatures: {
// jsx: false,
// },
// },
rules: {
'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
'no-use-before-define': 'off',
'prettier/prettier': ['error', { endOfLine: 'auto' }],
semi: 2,
// '@typescript-eslint/no-inferrable-types': 'off',
// '@typescript-eslint/indent': ['warn', 2],
// '@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,
},
},
],
};