-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheslint.config.mjs
75 lines (74 loc) · 1.96 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
74
75
import importPlugin from 'eslint-plugin-import';
import unusedImport from 'eslint-plugin-unused-imports';
import typeEslintPlugin from '@typescript-eslint/eslint-plugin';
import typeScriptParser from '@typescript-eslint/parser';
import eslintConfigPrettier from 'eslint-config-prettier';
import jsDocPlugin from 'eslint-plugin-jsdoc';
export default [
eslintConfigPrettier,
{
plugins: {
import: importPlugin,
jsdoc: jsDocPlugin,
'unused-imports': unusedImport,
'@typescript-eslint': typeEslintPlugin
},
files: ['**/*.ts'],
languageOptions: {
parser: typeScriptParser,
parserOptions: {
ecmaVersion: 2017,
sourceType: 'module',
project: './tsconfig.json'
}
},
ignores: [
'.eslint.config.mjs',
'rollup.config.js',
'src/types/output/**',
'test/**',
'dist/**',
'node_modules/**'
],
rules: {
curly: ['error', 'all'],
'no-extra-label': 'error',
'no-unused-labels': 'error',
'new-parens': 'error',
'no-new-wrappers': 'error',
'no-debugger': 'error',
'no-duplicate-case': 'error',
'no-throw-literal': 'error',
'no-return-await': 'error',
'no-unsafe-finally': 'error',
'no-unused-expressions': [
'error',
{
allowShortCircuit: true
}
],
'no-var': 'error',
'object-shorthand': 'error',
'prefer-arrow-callback': [
'error',
{
allowNamedFunctions: true
}
],
'prefer-const': [
'error',
{
destructuring: 'all'
}
],
'no-array-constructor': 'error',
'import/order': 'error',
'import/no-default-export': 'error',
'import/no-duplicates': 'error',
'unused-imports/no-unused-imports-ts': 'error',
'default-case': 'error',
'@typescript-eslint/member-ordering': 'error',
'@typescript-eslint/no-floating-promises': 'error'
}
}
];