Fix: Linter warnings #137

Merged
KevinMidboe merged 7 commits from fix/linting-warnings into master 2022-08-20 15:21:25 +00:00
Showing only changes of commit f1eaf3e019 - Show all commits

View File

@@ -6,13 +6,15 @@
}, },
"extends": ["eslint-config-airbnb-base", "plugin:prettier/recommended"], "extends": ["eslint-config-airbnb-base", "plugin:prettier/recommended"],
"rules": { "rules": {
"max-classes-per-file": 1,
"no-empty": [ "no-empty": [
2, 2,
{ {
"allowEmptyCatch": true "allowEmptyCatch": true
} }
], ],
"no-underscore-dangle": "off", "no-promise-executor-return": 1,
"no-shadow": "off" "no-shadow": "off",
"no-underscore-dangle": "off"
} }
} }