-
Notifications
You must be signed in to change notification settings - Fork 88
/
Copy patheslint.config.mjs
73 lines (67 loc) · 1.89 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
72
73
import tsLint from '@typescript-eslint/eslint-plugin';
import tsParser from '@typescript-eslint/parser';
import globals from 'globals';
import jsxA11Y from 'eslint-plugin-jsx-a11y';
import prettier from 'eslint-plugin-prettier';
import importPlugin from 'eslint-plugin-import';
import js from '@eslint/js';
export default [
js.configs.recommended,
{
ignores: [
'**/node_modules',
'**/coverage',
'**/dist',
'**/jest.config.ts',
'scripts/bin/scaffold/template/**/*',
'.prettierrc.js',
],
},
{
plugins: {
'@typescript-eslint': tsLint,
'jsx-a11y': jsxA11Y,
prettier,
importPlugin,
},
languageOptions: {
globals: {
...globals.browser,
...globals.node,
...globals.jest,
},
parser: tsParser,
ecmaVersion: 12,
sourceType: 'module',
},
files: ['**/*.ts', '**/*.tsx'],
rules: {
'no-alert': 'error',
'no-underscore-dangle': 0,
'no-useless-constructor': 0,
'no-redeclare': 1,
'class-methods-use-this': 0,
'importPlugin/extensions': 0,
'importPlugin/no-extraneous-dependencies': 0,
'@typescript-eslint/ban-types': 0,
'@typescript-eslint/no-unsafe-call': 0,
'@typescript-eslint/await-thenable': 0,
'@typescript-eslint/ban-ts-comment': 0,
'@typescript-eslint/no-unsafe-return': 0,
'@typescript-eslint/no-empty-function': 0,
'@typescript-eslint/no-floating-promises': 0,
'@typescript-eslint/no-unsafe-assignment': 0,
'@typescript-eslint/no-useless-constructor': 0,
'@typescript-eslint/no-unsafe-member-access': 0,
'@typescript-eslint/restrict-template-expressions': 0,
'@typescript-eslint/explicit-module-boundary-types': 0,
},
settings: {
'importPlugin/resolver': {
typescript: {
directory: ['**/tsconfig.json'],
},
},
},
},
];