forked from dgadelha/Portugol-Webstudio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.json
37 lines (37 loc) · 1.21 KB
/
.eslintrc.json
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
{
"$schema": "https://json.schemastore.org/eslintrc.json",
"extends": ["@cubos", "plugin:@angular-eslint/recommended"],
"ignorePatterns": [
"node_modules/",
".angular/",
"packages/**/lib/",
"packages/**/node_modules/",
// Arquivos gerados:
"packages/antlr/src/Portugol*.ts",
"packages/resources/assets/"
],
"overrides": [
{
"files": ["*.ts"],
"rules": {
"@typescript-eslint/ban-ts-comment": "off",
"@typescript-eslint/consistent-type-imports": "off",
"@typescript-eslint/naming-convention": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-unsafe-argument": "off",
"@typescript-eslint/no-unsafe-assignment": "off",
"@typescript-eslint/no-unsafe-member-access": "off",
"@typescript-eslint/prefer-for-of": "off",
"@typescript-eslint/prefer-nullish-coalescing": "off",
"no-alert": "off",
"no-bitwise": "off",
"no-case-declarations": "off",
"no-useless-escape": "off",
"no-template-curly-in-string": "off",
"prefer-destructuring": "off",
"prefer-named-capture-group": "off",
"require-unicode-regexp": "off"
}
}
]
}