-
-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy patheslint.config.js
More file actions
54 lines (47 loc) · 1.22 KB
/
eslint.config.js
File metadata and controls
54 lines (47 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
import tseslint from 'typescript-eslint';
import { globalIgnores } from 'eslint/config';
import noOnlyTests from 'eslint-plugin-no-only-tests';
import globals from 'globals';
import tsParser from '@typescript-eslint/parser';
import eslint from '@eslint/js';
import eslintConfigPrettier from 'eslint-config-prettier/flat';
export default tseslint.config([
eslint.configs.recommended,
eslintConfigPrettier,
tseslint.configs.recommended,
globalIgnores(['**/dist*/', '**/.*']),
{
plugins: {
'@typescript-eslint': tseslint.plugin,
'no-only-tests': noOnlyTests,
},
languageOptions: {
globals: {
...globals.browser,
...globals.node,
},
parser: tsParser,
ecmaVersion: 'latest',
sourceType: 'module',
},
rules: {
'no-console': 'error',
'no-return-assign': ['error', 'always'],
'@typescript-eslint/ban-ts-comment': 'off',
'@typescript-eslint/no-unused-expressions': 'off',
'@typescript-eslint/no-unused-vars': [
'error',
{
caughtErrors: 'none',
},
],
'no-only-tests/no-only-tests': 'error',
},
},
{
files: ['**/*.demo.js'],
rules: {
'no-console': 'off',
},
},
]);