This repository has been archived by the owner on Jan 19, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.js
83 lines (79 loc) · 2.28 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
let withReact;
try {
require.resolve('eslint-plugin-react');
withReact = true;
} catch (e) {
withReact = false;
}
const options = {
root: true,
env: {
node: true,
},
parser: '@typescript-eslint/parser',
plugins: ['@typescript-eslint', 'prefer-arrow', 'import'],
extends: [
'eslint:recommended',
'plugin:@typescript-eslint/recommended',
'plugin:import/errors',
'plugin:import/warnings',
'plugin:import/typescript',
],
rules: {
'indent': ['error', 4],
'operator-linebreak': ['error', 'before'],
'yoda': ['error', 'never'],
'object-curly-spacing': ['error', 'never'],
'array-bracket-spacing': ['error', 'never'],
'space-in-parens': ['error', 'never'],
'computed-property-spacing': ['error', 'never'],
'@typescript-eslint/array-type': [
'error',
{default: 'array-simple', readonly: 'array-simple'},
],
'@typescript-eslint/type-annotation-spacing': [
'error',
{before: true, after: true},
],
'@typescript-eslint/ban-ts-comment': ['error', {
'ts-ignore': 'allow-with-description',
}],
'prefer-arrow/prefer-arrow-functions': [
'error',
{
disallowPrototype: true,
singleReturnOnly: false,
classPropertiesAllowed: false,
},
],
'import/no-unresolved': ['error', {commonjs: true, amd: true}],
'import/newline-after-import': ['error'],
'import/order': ['error', {
'newlines-between': 'never',
'alphabetize': {order: 'asc', caseInsensitive: true},
}],
},
};
if (withReact) {
options.env.browser = true;
options.settings = {
react: {
version: 'detect',
},
};
options.parserOptions = {
ecmaFeatures: {
jsx: true,
},
};
options.extends.push('plugin:react/recommended');
options.rules['react/no-unescaped-entities'] = ['error', {forbid: ['>', '}']}];
options.rules['react/jsx-tag-spacing'] = [
'error',
{
beforeSelfClosing: 'never',
beforeClosing: 'never',
},
];
}
module.exports = options;