From 216fc46449c44a5c08434d823a75fc4c049cc8f3 Mon Sep 17 00:00:00 2001 From: emplums Date: Mon, 8 Apr 2019 15:18:19 -0700 Subject: [PATCH] add lint rules back for docs --- docs/.eslintrc.json | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 docs/.eslintrc.json diff --git a/docs/.eslintrc.json b/docs/.eslintrc.json new file mode 100644 index 00000000..cb1a8800 --- /dev/null +++ b/docs/.eslintrc.json @@ -0,0 +1,17 @@ +{ + "extends": [ + "plugin:github/react", + "plugin:jsx-a11y/recommended" + ], + "rules": { + "import/no-namespace": 0, + "no-unused-vars": ["error", { + "ignoreRestSiblings": true + }] + }, + "settings": { + "react": { + "version": "detect" + } + } +}