-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.js
41 lines (41 loc) · 1.17 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
module.exports = {
parser: '@typescript-eslint/parser',
parserOptions: {
project: './tsconfig.json',
sourceType: 'module',
},
env: {
node: true,
jest: true,
},
extends: [
'@doist/eslint-config/recommended-requiring-type-checking',
'@doist/eslint-config/simple-import-sort',
],
root: true,
ignorePatterns: ['scripts/', '.eslintrc.js', 'global-setup.js', 'jest.config.js'],
rules: {
'@typescript-eslint/no-useless-constructor': 'error',
'@typescript-eslint/no-unnecessary-condition': 'error',
'no-restricted-imports': [
'error',
{
patterns: [
{
group: ['@doist/ui-extensions-server/dist/*'],
message: 'Import directly from the package root, not the "dist" directory',
},
],
},
],
},
overrides: [
{
files: ['*.spec.*', 'fixtures.ts'],
rules: {
'@typescript-eslint/unbound-method': 'off',
'no-restricted-imports': 'off',
},
},
],
}