forked from zoton2/nodecg-vue-ts-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.browser.js
58 lines (58 loc) · 1.4 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
module.exports = {
root: true,
parser: 'vue-eslint-parser',
parserOptions: {
parser: '@typescript-eslint/parser',
project: 'tsconfig.browser.json',
sourceType: 'module',
extraFileExtensions: ['.vue'],
},
env: {
es6: true,
node: true,
},
globals: {
nodecg: 'readonly',
NodeCG: 'readonly',
},
plugins: [
'vue',
'@typescript-eslint',
],
extends: [
'airbnb-base',
'plugin:vue/recommended',
'eslint:recommended',
'plugin:@typescript-eslint/eslint-recommended',
'plugin:@typescript-eslint/recommended',
'plugin:import/typescript',
],
settings: {
'import/core-modules': ['nodecg/types/browser'],
'import/extensions': ['.js', '.jsx', '.ts', '.tsx'],
'import/resolver': {
node: {
moduleDirectory: [
'node_modules',
'../..',
'.',
],
},
},
},
rules: {
'import/extensions': ['error', 'ignorePackages', {
js: 'never',
jsx: 'never',
ts: 'never',
tsx: 'never',
}],
'import/no-extraneous-dependencies': ['error', {
devDependencies: true, // Some places have dev deps imported where eslint complains.
packageDir: ['.', '../..'], // Check for deps in NodeCG folder as well.
}],
'import/no-unresolved': [2, { caseSensitive: false }],
'max-len': ['error', { 'code': 100 }],
'lines-between-class-members': 'off',
}
};