forked from bcgov/business-filings-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
57 lines (57 loc) · 1.7 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
47
48
49
50
51
52
53
54
55
56
57
module.exports = {
root: true,
env: {
node: true,
es2021: true
},
extends: [
'eslint:recommended',
'plugin:@typescript-eslint/recommended',
'plugin:vue/base',
'plugin:vue/essential',
'plugin:vue/recommended',
'plugin:vue/strongly-recommended',
'plugin:vue/vue3-essential',
'plugin:vue/vue3-recommended',
'plugin:vue/vue3-strongly-recommended',
'plugin:vuetify/base',
'plugin:vuetify/recommended',
'@vue/standard',
'@vue/typescript'
],
rules: {
'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off',
'max-len': ['warn', { code: 120 }],
'vue/attribute-hyphenation': 'off',
'vue/multi-word-component-names': 'off',
'vue/no-deprecated-filter': 'warn',
'vue/no-deprecated-slot-scope-attribute': 'warn',
'vue/no-deprecated-v-bind-sync': 'off', // FUTURE: Fix deprecated v-bind sync
'vue/no-deprecated-v-on-native-modifier': 'warn',
'vue/no-v-for-template-key-on-child': 'warn',
'vue/no-v-html': 'off',
'vue/no-v-model-argument': 'warn',
'vue/v-on-event-hyphenation': 'off',
'vuetify/no-deprecated-classes': 'off', // FUTURE: Fix deprecated vuetify classes
'@typescript-eslint/ban-types': 'warn',
'@typescript-eslint/no-empty-function': 'off',
'@typescript-eslint/no-explicit-any': 'off',
'@typescript-eslint/no-var-requires': 'off'
},
parserOptions: {
parser: '@typescript-eslint/parser',
plugins: ['@typescript-eslint']
},
overrides: [
{
files: [
'**/__tests__/*.{j,t}s?(x)',
'**/tests/unit/**/*.spec.{j,t}s?(x)'
],
env: {
jest: true
}
}
]
}