-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.js
58 lines (53 loc) · 1.73 KB
/
index.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
// NB: You can't put `extends` in an overrides section because /shrug, so we
// fake it out by just direcly including it
const eslintRecommended = require('eslint/conf/eslint-recommended')
let legacyConfig = JSON.parse(JSON.stringify(require('./javascript')))
delete legacyConfig.extends
module.exports = {
parser: '@typescript-eslint/parser',
extends: [
// NB: We use the default preset from `create-react-app` as our base,
// because one of the great things it does is disable ESLint rules that
// are better covered by the TypeScript compiler, such as 'no-unused-var'.
'react-app',
// NB: Disable rules that Prettier covers
'prettier',
'prettier/react',
'prettier/@typescript-eslint',
],
overrides: [
{
files: ['**/*.js?(x)'],
...eslintRecommended,
...legacyConfig,
},
{
files: ['**/*.ts?(x)'],
rules: {
'@typescript-eslint/array-type': 'error',
'@typescript-eslint/await-thenable': 'error',
'@typescript-eslint/ban-types': 'error',
'@typescript-eslint/no-extra-non-null-assertion': 'warn',
'@typescript-eslint/no-floating-promises': 'warn',
'@typescript-eslint/no-misused-promises': 'warn',
'@typescript-eslint/no-non-null-asserted-optional-chain': 'warn',
'@typescript-eslint/no-unnecessary-type-assertion': 'warn',
'@typescript-eslint/prefer-optional-chain': 'warn',
'@typescript-eslint/unbound-method': 'error',
'linebreak-style': 'off',
},
},
{
files: ['**/*.stories.*'],
rules: {
'import/no-anonymous-default-export': 'off',
},
},
{
files: ['**/__tests__/*'],
rules: {
'react/jsx-no-literals': 'off',
},
},
],
}