include .eslintrc in linting

This commit is contained in:
Aarni Halinen
2021-08-23 18:44:24 +03:00
parent 35a18b5c91
commit c198fe0947
2 changed files with 4 additions and 5 deletions
+4 -4
View File
@@ -26,11 +26,11 @@ module.exports = {
rules: {
"max-len": [
"warn",
240
240,
],
"@typescript-eslint/quotes": [
"error",
"double"
"double",
],
"react/jsx-props-no-spreading": "off",
"react/jsx-one-expression-per-line": "off",
@@ -40,5 +40,5 @@ module.exports = {
"jsx-a11y/click-events-have-key-events": "off",
"jsx-a11y/no-noninteractive-element-interactions": "off",
"jsx-a11y/no-static-element-interactions": "off",
}
}
},
};