-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy path.eslintrc.js
37 lines (37 loc) · 1.03 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
module.exports = {
env: {
browser: true,
node: true,
'jest/globals': true,
},
extends: [
// Integrate typescript and prettier.
`plugin:@typescript-eslint/recommended`,
`prettier/@typescript-eslint`,
`plugin:prettier/recommended`,
],
ignorePatterns: [`cache`, `dist`, `generated`, `tmp`],
parser: `@typescript-eslint/parser`,
parserOptions: {
ecmaVersion: 2020,
project: `./tsconfig.json`,
sourceType: `module`,
},
plugins: [`import`, `jest`, `max-params-no-constructor`],
overrides: [
{
files: [`./apps/*-api/**/*.ts`],
rules: {
// () => String etc. is useful for resolvers, module forwardRef's etc.
'arrow-body-style': [`off`],
},
},
{
files: [`*.actions.ts`],
rules: {
// We allow many classes per file for ngxs actions.
'max-classes-per-file': `off`,
},
},
],
};