Enable linting for the lint plugins

This commit is contained in:
Yury Bondarenko
2024-03-14 15:02:39 +01:00
parent 9a27db3835
commit ae50780e28
2 changed files with 3 additions and 1 deletions

View File

@@ -24,7 +24,8 @@
"parserOptions": { "parserOptions": {
"project": [ "project": [
"./tsconfig.json", "./tsconfig.json",
"./cypress/tsconfig.json" "./cypress/tsconfig.json",
"./lint/tsconfig.json"
], ],
"createDefaultProgram": true "createDefaultProgram": true
}, },

View File

@@ -267,6 +267,7 @@
"lintFilePatterns": [ "lintFilePatterns": [
"src/**/*.ts", "src/**/*.ts",
"cypress/**/*.ts", "cypress/**/*.ts",
"lint/**/*.ts",
"src/**/*.html", "src/**/*.html",
"src/**/*.json5" "src/**/*.json5"
] ]