-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc.browser.js
72 lines (71 loc) · 2.05 KB
/
.eslintrc.browser.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
const path = require('path');
module.exports = {
root: true,
env: {
node: true,
},
parser: 'vue-eslint-parser',
parserOptions: {
parser: '@typescript-eslint/parser',
project: path.join(__dirname, 'tsconfig.browser.json'),
extraFileExtensions: ['.vue'],
ecmaVersion: 2020,
},
globals: {
nodecg: 'readonly',
NodeCG: 'readonly',
},
plugins: [
'@typescript-eslint',
],
extends: [
'plugin:vue/essential',
'airbnb-base',
'airbnb-typescript/base',
'eslint:recommended',
'plugin:@typescript-eslint/recommended',
'plugin:import/typescript',
],
settings: {
'import/resolver': {
typescript: {
// This is needed to properly resolve paths(?)
// Left commented out, might need again in the future.
// project: 'tsconfig.browser.json',
},
// This may be wanted/needed in the future.
/* webpack: {
config: path.join(__dirname, '../webpack.config.js'),
}, */
},
'import/extensions': ['.js', '.jsx', '.ts', '.tsx'],
},
rules: {
'import/no-extraneous-dependencies': ['error', {
// Everything is compiled for the browser so dev dependencies are fine.
devDependencies: true,
packageDir: [path.join(__dirname, '.'), path.join(__dirname, '..')],
}],
// max-len set to ignore "import" lines (as they usually get long and messy).
'max-len': ['error', { code: 100, ignorePattern: '^import\\s.+\\sfrom\\s.+;$' }],
// I mainly have this off as it ruins auto import sorting in VSCode.
'object-curly-newline': 'off',
'@typescript-eslint/lines-between-class-members': 'off',
'vue/html-self-closing': ['error'],
'class-methods-use-this': 'off',
'no-param-reassign': ['error', {
props: true,
ignorePropertyModificationsFor: [
'state', // for vuex state
'acc', // for reduce accumulators
'e', // for e.returnvalue
],
}],
'import/extensions': ['error', 'ignorePackages', {
js: 'never',
jsx: 'never',
ts: 'never',
tsx: 'never',
}],
}
};