-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy path.eslintrc.js
80 lines (79 loc) · 2.27 KB
/
.eslintrc.js
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
76
77
78
79
80
// @ts-check
const { defineConfig } = require('eslint-define-config');
const cjsTsconfig = require('./tsconfig.cjs.json');
const esTsconfig = require('./tsconfig.es.json');
module.exports = defineConfig({
root: true,
parser: '@typescript-eslint/parser',
parserOptions: {
ecmaVersion: 'latest',
tsconfigRootDir: __dirname,
project: './tsconfig.json',
},
extends: [
'eslint:recommended',
'plugin:node/recommended-module',
'plugin:@typescript-eslint/recommended',
'plugin:@typescript-eslint/recommended-requiring-type-checking',
],
rules: {
'node/no-missing-import': 'off',
'@typescript-eslint/consistent-type-imports': 'error',
'@typescript-eslint/no-unsafe-argument': 'off',
'@typescript-eslint/no-unsafe-assignment': 'off',
'@typescript-eslint/no-unsafe-call': 'off',
'@typescript-eslint/no-unsafe-member-access': 'off',
'@typescript-eslint/no-unsafe-return': 'off',
},
overrides: [
{
files: cjsTsconfig.include,
parserOptions: {
project: './tsconfig.cjs.json',
},
extends: ['plugin:node/recommended-script'],
// configuration file type is cjs,disable no-var-requires
rules: {
'@typescript-eslint/no-var-requires': 'off',
'@typescript-eslint/no-unsafe-assignment': 'off',
},
},
{
files: esTsconfig.include,
parserOptions: {
project: './tsconfig.es.json',
},
extends: ['plugin:node/recommended-module'],
rules: {
'node/no-missing-import': 'off',
'@typescript-eslint/no-unsafe-assignment': 'off',
},
},
{
files: ['examples/**/*'],
parserOptions: {
project: './tsconfig.example.json',
},
rules: {
// node/no-unpublished-import can't known sub node_modules, like examples/react/node_modules
'node/no-unpublished-import': 'off',
'node/no-unpublished-require': 'off',
},
},
{
files: ['test/**/*'],
parserOptions: {
project: './tsconfig.test.json',
},
env: {
jest: true,
},
extends: ['plugin:jest/recommended'],
rules: {
'@typescript-eslint/unbound-method': 'off',
'jest/unbound-method': 'error',
},
},
],
ignorePatterns: ['dist/**', 'coverage/**'],
});