From 2f185b03e96e5acac7ca16ead01176cca48f4f6b Mon Sep 17 00:00:00 2001 From: Ceda EI Date: Wed, 9 Sep 2020 21:24:49 +0530 Subject: [PATCH] Add eslintrc in popup --- popup/.eslintrc.js | 44 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 popup/.eslintrc.js diff --git a/popup/.eslintrc.js b/popup/.eslintrc.js new file mode 100644 index 0000000..a393912 --- /dev/null +++ b/popup/.eslintrc.js @@ -0,0 +1,44 @@ +module.exports = { + "env": { + "browser": true, + "es6": true + }, + "extends": ["eslint:recommended", "plugin:react/recommended"], + "globals": { + "Atomics": "readonly", + "SharedArrayBuffer": "readonly" + }, + "parserOptions": { + "ecmaFeatures": { + "jsx": true + }, + "ecmaVersion": 2018, + "sourceType": "module" + }, + "plugins": [ + "react" + ], + "rules": { + "indent": [ + "error", + "tab" + ], + "linebreak-style": [ + "error", + "unix" + ], + "quotes": [ + "error", + "double" + ], + "semi": [ + "error", + "always" + ] + }, + "settings": { + "react": { + "version": "detect" + } + } +};