-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.eslintrc.js
40 lines (40 loc) · 944 Bytes
/
.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
module.exports = {
parser: '@typescript-eslint/parser',
parserOptions: {
project: 'tsconfig.json',
sourceType: 'module',
},
plugins: ['@typescript-eslint/eslint-plugin'],
extends: [
'eslint:recommended',
'plugin:@typescript-eslint/eslint-recommended',
'plugin:@typescript-eslint/recommended',
],
root: true,
env: {
browser: true,
commonjs: true,
es6: true,
jest: true,
node: true,
},
settings: {
'import/parsers': {
'@typescript-eslint/parser': ['.ts', '.tsx'],
},
'import/resolver': {
node: {
extensions: ['.ts', '.tsx', '.json'],
},
typescript: {
alwaysTryTypes: true,
project: ['tsconfig.json'],
},
},
},
rules: {
// https://github.com/benmosher/eslint-plugin-import/blob/master/docs/rules/named.md
// "Note that type imports, as used by Flow, are always ignored."
'import/named': 'off',
},
}