forked from innovation-system/electron-kiosk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
39 lines (39 loc) · 941 Bytes
/
.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
module.exports = {
root: true,
env: {
node: true,
browser: true,
es2021: true
},
extends: [
'plugin:vue/essential',
'plugin:vuetify/base',
'@vue/airbnb',
'plugin:prettier/recommended'
],
plugins: ['prettier'],
parserOptions: {
ecmaVersion: 12,
sourceType: 'module'
},
globals: {
__static: true
},
rules: {
'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
'import/no-extraneous-dependencies': 'off',
'no-underscore-dangle': 'off',
'no-param-reassign': 'off',
'no-restricted-syntax': 'off',
'guard-for-in': 'off',
'no-plusplus': 'off',
'class-methods-use-this': 'off',
'no-useless-constructor': 'off',
'no-new-func': 'off',
'dot-notation': 'off',
'no-restricted-globals': ['error', 'isFinite', 'isNaN'],
'vue/experimental-script-setup-vars': 'off',
'vue/script-setup-uses-vars': 'off'
}
}