From 569bdb8c5d7538fa0ea8a99ff2f8376f7cbfa51a Mon Sep 17 00:00:00 2001 From: piotrruss Date: Mon, 6 Sep 2021 23:13:22 +0200 Subject: added stadard linter --- .eslintrc.json | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .eslintrc.json (limited to '.eslintrc.json') diff --git a/.eslintrc.json b/.eslintrc.json new file mode 100644 index 0000000..40bc712 --- /dev/null +++ b/.eslintrc.json @@ -0,0 +1,17 @@ +{ + "extends": [ + "standard", + "standard-jsx", + "standard-react", + "plugin:@next/next/recommended" + ], + "env": { + "browser": true, + "node": true + }, + "rules": { + "react/react-in-jsx-scope": "off", + "react/jsx-filename-extension": [1, { "extensions": [".js", ".jsx"] }], + "react/prop-types": "off" + } +} -- cgit v1.2.3