-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
.eslintrc.cjs
47 lines (40 loc) · 1.06 KB
/
.eslintrc.cjs
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
'use strict';
module.exports = {
parser: '@typescript-eslint/parser',
parserOptions: {
ecmaVersion: 'latest',
sourceType: 'module',
},
env: {
commonjs: false,
es6: true,
},
plugins: ['@typescript-eslint'],
extends: ['eslint:recommended', 'plugin:@typescript-eslint/recommended', 'plugin:react/recommended'],
rules: {
'no-console': 'error',
'no-undef': 'off',
indent: 'off', // prettier instead
'@typescript-eslint/ban-ts-comment': 'off', // sometimes you're smarter
'@typescript-eslint/no-unused-vars': ['error', { ignoreRestSiblings: true }],
'@typescript-eslint/no-var-requires': 'off',
'@typescript-eslint/consistent-type-imports': ['error', { prefer: 'type-imports' }],
'@typescript-eslint/no-empty-function': 'off',
'@typescript-eslint/no-non-null-assertion': 'off',
},
settings: {
react: {
version: 'detect',
},
},
overrides: [
{
files: ['**/*.test.tsx', '**/*.test.ts'],
plugins: ['jest'],
extends: ['plugin:jest/recommended'],
rules: {
'jest/consistent-test-it': ['error', { fn: 'test' }],
},
},
],
};