-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy path.eslintrc.json
More file actions
31 lines (30 loc) · 843 Bytes
/
.eslintrc.json
File metadata and controls
31 lines (30 loc) · 843 Bytes
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
{
"root": true,
"overrides": [
{
"files": ["*.js", "*.mjs", "*.ts", "*.mts"],
"extends": ["plugin:@typescript-eslint/recommended"],
"plugins": ["@typescript-eslint", "@nrwl/nx"],
"parser": "@typescript-eslint/parser",
"rules": {
"@typescript-eslint/no-unused-vars": ["error", { "argsIgnorePattern": "^_" }]
// "@nrwl/nx/enforce-module-boundaries": [
// "error",
// {
// "allow": [],
// "depConstraints": [
// {
// "sourceTag": "scope:lib",
// "onlyDependOnLibsWithTags": ["scope:lib"]
// },
// {
// "sourceTag": "*",
// "onlyDependOnLibsWithTags": ["*"]
// }
// ]
// }
// ]
}
}
]
}