-
-
Notifications
You must be signed in to change notification settings - Fork 94
/
eslint.config.mjs
50 lines (49 loc) · 939 Bytes
/
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
import anansiPlugin from '@anansi/eslint-plugin';
import globals from 'globals';
export default [
...anansiPlugin.configs.typescript,
{
ignores: [
'**/lib*/*',
'**/dist*/*',
'packages/*/native/*',
'**/node_modules*/*',
'node_modules/*',
'**/src-*-types/*',
],
},
{
files: ['**/*.?(m|c)ts?(x)'],
rules: {
'@typescript-eslint/no-empty-function': 'warn',
},
},
{
files: ['**/__tests__/**/*.?(m|c)ts?(x)', '**/*.test?(.*).?(m|c)ts?(x)'],
rules: {
'@typescript-eslint/no-unused-expressions': 'off',
},
},
{
files: ['**/*.?(m|c)js?(x)'],
settings: {
'import/resolver': {
node: {},
},
},
},
{
languageOptions: {
globals: {
...globals.browser,
process: 'writable',
},
},
},
{
files: ['examples/**/*.?(m|c)ts?(x)'],
rules: {
'no-console': 'off',
},
},
];