Skip to content

Commit 03126e1

Browse files
committed
Fixed all linting errors
1 parent 0748f19 commit 03126e1

File tree

12 files changed

+408
-417
lines changed

12 files changed

+408
-417
lines changed

application/.eslintrc

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,8 @@
33
"browser": true,
44
"es2021": true
55
},
6-
"extends": [
7-
"eslint:recommended",
8-
"plugin:@typescript-eslint/recommended"
9-
],
6+
"ignorePatterns": ["node_modules/*", "**/vendor/*.js"],
7+
"extends": ["eslint:recommended", "plugin:@typescript-eslint/recommended"],
108
"parser": "@typescript-eslint/parser",
119
"parserOptions": {
1210
"ecmaVersion": 12,
@@ -17,6 +15,7 @@
1715
"@typescript-eslint/ban-types": "off",
1816
"@typescript-eslint/no-empty-function": "off",
1917
"@typescript-eslint/no-explicit-any": "off",
20-
"@typescript-eslint/no-unused-vars": "warn"
18+
"@typescript-eslint/no-unused-vars": "warn",
19+
"@typescript-eslint/explicit-module-boundary-types": "off"
2120
}
2221
}

application/package-lock.json

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

application/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,7 @@
7575
"karma-coverage-istanbul-reporter": "~2.0.1",
7676
"karma-jasmine": "~2.0.1",
7777
"karma-jasmine-html-reporter": "^1.4.0",
78+
"prettier": "^2.3.0",
7879
"protractor": "~5.4.0",
7980
"ts-loader": "^5.2.0",
8081
"ts-node": "~7.0.0",

0 commit comments

Comments
 (0)