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
-1
View File
@@ -5,4 +5,3 @@ node_modules
# don't lint nyc coverage output # don't lint nyc coverage output
coverage coverage
next-env.d.ts next-env.d.ts
.eslintrc.js
+4 -4
View File
@@ -26,11 +26,11 @@ module.exports = {
rules: { rules: {
"max-len": [ "max-len": [
"warn", "warn",
240 240,
], ],
"@typescript-eslint/quotes": [ "@typescript-eslint/quotes": [
"error", "error",
"double" "double",
], ],
"react/jsx-props-no-spreading": "off", "react/jsx-props-no-spreading": "off",
"react/jsx-one-expression-per-line": "off", "react/jsx-one-expression-per-line": "off",
@@ -40,5 +40,5 @@ module.exports = {
"jsx-a11y/click-events-have-key-events": "off", "jsx-a11y/click-events-have-key-events": "off",
"jsx-a11y/no-noninteractive-element-interactions": "off", "jsx-a11y/no-noninteractive-element-interactions": "off",
"jsx-a11y/no-static-element-interactions": "off", "jsx-a11y/no-static-element-interactions": "off",
} },
} };