-
Notifications
You must be signed in to change notification settings - Fork 26
/
.eslintrc.js
43 lines (41 loc) · 1005 Bytes
/
.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
const { join } = require('path');
module.exports = {
root: true,
parserOptions: {
ecmaVersion: 2018,
sourceType: 'module',
project: join(__dirname, './tsconfig.eslint.json')
},
extends: [
'@underline/eslint-config-typescript',
'@underline/eslint-config-node',
'plugin:jest/recommended'
],
plugins: ['jest'],
settings: {
node: {
tryExtensions: ['.js', '.json', '.node', '.ts']
}
},
rules: {
'no-unused-vars': 'off',
'node/no-unsupported-features/es-syntax': 'off',
'node/no-missing-import': [
'error',
{
allowModules: ['unist'] // this package is only TS types @types/unist
}
],
'@typescript-eslint/no-empty-interface': 'off'
},
overrides: [
{
files: ['packages/**/tests/**/*.ts'],
rules: {
'node/no-unpublished-import': 'off',
'@typescript-eslint/explicit-function-return-type': 'off',
'@typescript-eslint/no-non-null-assertion': 'off'
}
}
]
};