forked from BSGmarathon/speedcontrol-tweetr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.browser.js
56 lines (55 loc) · 1.51 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
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'],
},
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.
project: path.join(__dirname, 'tsconfig.browser.json'),
},
},
'import/extensions': ['.js', '.jsx', '.ts', '.tsx'],
},
rules: {
semi: ['error', 'always'],
// Everything is compiled for the browser so dev dependencies are fine.
'import/no-extraneous-dependencies': ['error', { devDependencies: true }],
// 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',
// Allows "main.vue" files to be named as such.
'vue/multi-word-component-names': ['error', { 'ignores': ['main'] }],
// Not sure how much this is needed anymore?
'import/extensions': ['error', 'ignorePackages', {
js: 'never',
jsx: 'never',
ts: 'never',
tsx: 'never',
}],
}
};