-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
87 lines (86 loc) · 2.72 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
const restrictedGlobals = require('confusing-browser-globals');
module.exports = {
parser: '@typescript-eslint/parser',
plugins: [
'@typescript-eslint',
'import'
],
extends: [
'eslint:recommended',
'plugin:@typescript-eslint/eslint-recommended',
'plugin:@typescript-eslint/recommended',
'plugin:import/errors',
'plugin:import/warnings',
'plugin:import/typescript',
],
parserOptions: {
ecmaVersion: 8,
sourceType: 'module',
ecmaFeatures: {
impliedStrict: true,
experimentalObjectRestSpread: true,
jsx: true,
}
},
env: {
es6: true,
node: true,
jest: true,
browser: true,
webextensions: true,
},
rules: {
'no-console': 'warn',
'import/no-unresolved': ['error', { commonjs: true }],
'no-unused-vars': 'off',
'no-restricted-globals': ['warn'].concat(restrictedGlobals),
'no-extra-boolean-cast': 'off',
'@typescript-eslint/camelcase': 'off',
'@typescript-eslint/explicit-function-return-type': 'off',
'@typescript-eslint/explicit-module-boundary-types': 'off',
// ? Disable these rules for all files...
'no-undef': 'off',
'@typescript-eslint/no-var-requires': 'off',
},
overrides: [{
// ? ... but enable these rules specifically for TypeScript files
files: ['*.ts', '*.tsx'],
rules: {
'no-undef': 'error',
'@typescript-eslint/no-var-requires': 'error',
// ? Already handled by vscode
'@typescript-eslint/no-unused-vars': 'off',
}
}],
settings: {
'react': {
version: 'detect'
},
'import/extensions': [
'.ts', '.tsx', '.js', '.jsx',
],
// ? Switch parsers depending on which type of file we're looking at
'import/parsers': {
'@typescript-eslint/parser': ['.ts', '.tsx'],
'babel-eslint': ['.js', '.jsx'],
},
'import/resolver': {
alias : {
map: [
// ! If changed, also update these aliases in tsconfig.js &
// ! package.json
['universe','./src'],
['multiverse','./lib'],
['types','./types'],
],
extensions: ['.js', '.jsx', '.ts', '.tsx'],
},
typescript: {},
},
'import/ignore': [
// ? Don't go complaining about anything that we don't own
'.*/node_modules/.*',
]
},
ignorePatterns: ['coverage', 'build', '/gulpfile.js', '/next.config.js']
};