-
Notifications
You must be signed in to change notification settings - Fork 9
/
.eslintrc.js
96 lines (96 loc) · 2.7 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
88
89
90
91
92
93
94
95
96
module.exports = {
extends: [
'airbnb',
'airbnb/hooks',
'plugin:@typescript-eslint/recommended',
'plugin:jest/recommended',
'plugin:promise/recommended',
'plugin:compat/recommended',
'plugin:prettier/recommended',
],
env: {
browser: true,
node: true,
},
parser: '@typescript-eslint/parser',
parserOptions: {
ecmaVersion: 2020,
sourceType: 'module',
tsconfigRootDir: __dirname,
createDefaultProgram: true,
},
settings: {
'import/resolver': {
// See https://github.com/benmosher/eslint-plugin-import/issues/1396#issuecomment-575727774 for line below
node: {},
webpack: {
config: require.resolve('./.erb/configs/webpack.config.eslint.ts'),
},
typescript: {},
},
'import/parsers': {
'@typescript-eslint/parser': ['.ts', '.tsx'],
},
},
rules: {
'prettier/prettier': [
'error',
{
printWidth: 100,
tabWidth: 2,
bracketSpacing: true,
singleQuote: true,
trailingComma: 'es5',
},
],
// A temporary hack related to IDE not resolving correct package.json
'import/no-extraneous-dependencies': 'off',
'import/no-unresolved': 'error',
// Since React 17 and typescript 4.1 you can safely disable the rule
'react/react-in-jsx-scope': 'off',
'import/extensions': 'off',
'import/no-import-module-exports': 'off',
'react/function-component-definition': 'off',
'react/default-props-match-prop-types': 'off',
'react/no-array-index-key': 'off',
'react/jsx-props-no-spreading': 'off',
'react/jsx-filename-extension': 'off',
'@typescript-eslint/no-unused-vars': [
'warn', // or error
{
argsIgnorePattern: '^_',
varsIgnorePattern: '^_',
caughtErrorsIgnorePattern: '^_',
},
],
'no-shadow': 'off',
'@typescript-eslint/no-shadow': 'error',
'@typescript-eslint/explicit-function-return-type': 'off',
'@typescript-eslint/explicit-module-boundary-types': 'off',
'@typescript-eslint/no-var-requires': 'off',
'@typescript-eslint/no-unsafe-declaration-merging': 'off', // temporary fix for EventEmitter & EventTarget
'no-param-reassign': ['error', { props: false }],
// Useless rules
'import/prefer-default-export': 'off',
'class-methods-use-this': 'off',
'promise/always-return': 'off',
'no-restricted-exports': 'off',
},
overrides: [
{
files: ['chords-data.ts'],
rules: {
'prettier/prettier': [
'error',
{
printWidth: 1000,
tabWidth: 2,
bracketSpacing: true,
singleQuote: true,
trailingComma: 'es5',
},
],
},
},
],
};