twenty/tools/eslint-rules/project.json

20 lines
429 B
JSON
Raw Normal View History

{
"name": "eslint-rules",
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"sourceRoot": "tools/eslint-rules",
"tags": ["scope:shared"],
"targets": {
"lint": {
"options": {
"eslintConfig": "{workspaceRoot}/.eslintrc.cjs",
"lintFilePatterns": ["{projectRoot}/**/*.ts"]
},
"configurations": {
"fix": {}
}
},
"typecheck": {},
"test": {}
}
}