Skip to content
Snippets Groups Projects
Commit 4d44e304 authored by rhenck's avatar rhenck
Browse files

Change linter settings to ignore cetrain folders

parent 8f29307e
No related branches found
No related tags found
No related merge requests found
...@@ -23,8 +23,10 @@ ...@@ -23,8 +23,10 @@
"eslintConfig": { "eslintConfig": {
"extends": "@iqb/eslint-config", "extends": "@iqb/eslint-config",
"parserOptions": { "parserOptions": {
"ignores": ["**/dist/*.*", "**/scripts/*.*", "**/test-data/*.*", "./dist/*", "./node_modules"],
"project": "./tsconfig.json" "project": "./tsconfig.json"
}, },
"ignorePatterns": ["**/dist/*.*", "**/scripts/*.*", "**/test-data/*.*", "./dist/**/*", "./node_modules/**/*"],
"rules": { "rules": {
"class-methods-use-this": [ "class-methods-use-this": [
"error", "error",
......
...@@ -35,6 +35,7 @@ ...@@ -35,6 +35,7 @@
}, },
"useDefineForClassFields": false "useDefineForClassFields": false
}, },
"exclude": ["./dist/*", "./scripts/*", "./example_data/*", "./docs/*"],
"angularCompilerOptions": { "angularCompilerOptions": {
"enableI18nLegacyMessageIdFormat": false, "enableI18nLegacyMessageIdFormat": false,
"strictInjectionParameters": true, "strictInjectionParameters": true,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment