diff options
Diffstat (limited to 'tslint.json')
| -rw-r--r-- | tslint.json | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/tslint.json b/tslint.json index 277c8eb..d9b1aed 100644 --- a/tslint.json +++ b/tslint.json @@ -1,7 +1,8 @@ { "extends": "tslint:recommended", "rulesDirectory": [ - "codelyzer" + "codelyzer", + "node_modules/@nrwl/workspace/src/tslint" ], "rules": { "align": { @@ -147,6 +148,20 @@ "element", "app", "kebab-case" + ], + "nx-enforce-module-boundaries": [ + true, + { + "allow": [], + "depConstraints": [ + { + "sourceTag": "*", + "onlyDependOnLibsWithTags": [ + "*" + ] + } + ] + } ] } } |