forked from PRB0t/PRB0t
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.eslint.js
More file actions
54 lines (54 loc) · 1.22 KB
/
.eslint.js
File metadata and controls
54 lines (54 loc) · 1.22 KB
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
module.exports = {
root: true,
extends: [
'airbnb-typescript',
'airbnb/hooks',
'plugin:@typescript-eslint/recommended',
'plugin:jest/recommended',
'plugin:prettier/recommended',
],
plugins: ['@typescript-eslint', 'jest', 'import'],
env: {
browser: true,
es6: true,
jest: true,
},
parser: '@typescript-eslint/parser',
parserOptions: {
tsconfigRootDir: __dirname,
ecmaFeatures: {
jsx: true,
},
ecmaVersion: 2018,
sourceType: 'module',
project: './tsconfig.json',
},
rules: {
'@typescript-eslint/no-unused-vars': 'error',
'@typescript-eslint/no-explicit-any': 'error',
'prettier/prettier': 'error',
'import/no-extraneous-dependencies': 'off',
'import/extensions': 'off',
'linebreak-style': ['error', 'unix'],
'eol-last': ['error', 'always'],
'@typescript-eslint/naming-convention': [
'error',
{
selector: 'enum',
format: ['UPPER_CASE', 'PascalCase'],
},
{
selector: 'enumMember',
format: ['UPPER_CASE', 'PascalCase'],
},
],
},
overrides: [
{
files: ['**/*.js'],
rules: {
'@typescript-eslint/no-var-requires': 'off',
},
},
],
};