-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc.js
94 lines (94 loc) · 2.22 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
module.exports = {
parser: 'babel-eslint',
env: {
es6: true,
node: true,
browser: true,
},
parserOptions: {
ecmaVersion: 6,
sourceType: 'module',
},
settings: {
'import/resolver': {
node: {
paths: ['./src'],
},
},
},
extends: [
'eslint:recommended',
'plugin:prettier/recommended',
'plugin:import/errors',
'plugin:import/warnings',
],
rules: {
semi: ['error', 'always', { omitLastInOneLineBlock: true }],
'no-console': ['error'],
'no-unused-vars': 0,
'spaced-comment': ['error', 'always'],
'keyword-spacing': ['error', { after: true }],
'lines-between-class-members': ['error', 'always'],
'object-property-newline': [
'error',
{ allowAllPropertiesOnSameLine: true },
],
quotes: ['error', 'single', { allowTemplateLiterals: true }],
'import/no-unresolved': [2, { commonjs: true, amd: true }],
'import/named': 2,
'import/namespace': 0,
'import/no-self-import': 2,
'import/first': 2,
'import/order': [
'error',
{
'newlines-between': 'never',
},
],
'import/no-named-as-default': 0,
},
overrides: [
{
files: ['**/*.ts'],
parser: '@typescript-eslint/parser',
plugins: ['@typescript-eslint'],
extends: [
'plugin:@typescript-eslint/eslint-recommended',
'plugin:@typescript-eslint/recommended',
],
settings: {
'import/parsers': {
'@typescript-eslint/parser': ['.ts', '.tsx'],
},
'import/resolver': {
typescript: {},
},
},
rules: {
'@typescript-eslint/explicit-module-boundary-types': 0,
},
},
{
files: ['**/test/**/*.[t|j]s'],
env: {
es6: true,
jest: true,
node: true,
},
rules: {
'no-unused-vars': 0,
'jest/no-disabled-tests': 0,
'jest/no-focused-tests': 'error',
'jest/no-identical-title': 'error',
'jest/prefer-to-have-length': 'warn',
'jest/valid-expect': 'error',
},
extends: [
'eslint:recommended',
'plugin:import/errors',
'plugin:import/warnings',
'plugin:jest/recommended',
],
},
],
};