-
Notifications
You must be signed in to change notification settings - Fork 1
/
eslint.config.mjs
71 lines (63 loc) · 2.19 KB
/
eslint.config.mjs
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
// @ts-check
import eslint from '@eslint/js';
import tsEsLint from 'typescript-eslint';
import react from 'eslint-plugin-react';
import globals from 'globals';
import eslintPluginPrettierRecommended from 'eslint-plugin-prettier/recommended';
export default tsEsLint.config(
{
ignores: ['dist'],
},
eslint.configs.recommended,
...tsEsLint.configs.recommended,
{
...react.configs.flat.recommended,
rules: {
...react.configs.flat.recommended.rules,
'react/react-in-jsx-scope': 'off',
},
settings: { react: { version: 'detect' } },
},
{
files: ['**/*.ts', '**/*.tsx'],
languageOptions: {
ecmaVersion: 2018,
sourceType: 'module',
parserOptions: { project: ['./tsconfig.json'] },
globals: { ...globals.browser },
},
rules: {
'@typescript-eslint/explicit-function-return-type': 'off',
'@typescript-eslint/explicit-module-boundary-types': 'off',
'@typescript-eslint/no-non-null-assertion': 'off',
'@typescript-eslint/consistent-type-exports': 'error',
'@typescript-eslint/consistent-type-imports': 'error',
'@typescript-eslint/no-unused-vars': 'error',
'@typescript-eslint/no-unused-expressions': 'error',
'@typescript-eslint/no-empty-object-type': ['error', { allowInterfaces: 'with-single-extends' }],
'object-curly-spacing': ['error', 'always'],
'max-len': ['error', { code: 120, ignoreStrings: true, ignoreTemplateLiterals: true }],
'eol-last': ['error', 'always'],
'no-multiple-empty-lines': ['error', { max: 1, maxEOF: 0 }],
// Can be re-enabled once the following issues are resolved: https://github.com/import-js/eslint-plugin-import/issues/2948
// "import/order": ["error", {
// groups: ["builtin", "external", "internal", ["parent", "sibling", "index"]],
//
// alphabetize: {
// order: "asc",
// caseInsensitive: true
// },
//
// "newlines-between": "always"
// }],
//
// "import/no-duplicates": ["error"],
//
// "sort-imports": ["error", {
// ignoreCase: true,
// ignoreDeclarationSort: true
// }]
},
},
eslintPluginPrettierRecommended,
);