From c198fe09477b07c30337ef1a69e506d3013a5bb2 Mon Sep 17 00:00:00 2001 From: Aarni Halinen Date: Mon, 23 Aug 2021 18:44:24 +0300 Subject: [PATCH] include .eslintrc in linting --- .eslintignore | 1 - .eslintrc.js | 8 ++++---- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/.eslintignore b/.eslintignore index 7e7d590..a99dad3 100644 --- a/.eslintignore +++ b/.eslintignore @@ -5,4 +5,3 @@ node_modules # don't lint nyc coverage output coverage next-env.d.ts -.eslintrc.js \ No newline at end of file diff --git a/.eslintrc.js b/.eslintrc.js index 7ea2f81..ccbcd96 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -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", - } -} + }, +};