Skip to content

Commit f4a9045

Browse files
committed
chore(tools): configure linter for tools folder
1 parent 79aec4a commit f4a9045

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

tools/.eslintrc.json

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"extends": "../.eslintrc.json",
3+
"ignorePatterns": ["!**/*"],
4+
"overrides": [
5+
{
6+
"files": "*.ts",
7+
"parserOptions": {
8+
"project": ["tools/tsconfig.tools.json"]
9+
},
10+
"rules": {
11+
"@nx/enforce-module-boundaries": "off"
12+
}
13+
}
14+
]
15+
}

0 commit comments

Comments
 (0)