summaryrefslogtreecommitdiff
path: root/web-ui/.eslintrc.json
diff options
context:
space:
mode:
Diffstat (limited to 'web-ui/.eslintrc.json')
-rw-r--r--web-ui/.eslintrc.json18
1 files changed, 18 insertions, 0 deletions
diff --git a/web-ui/.eslintrc.json b/web-ui/.eslintrc.json
new file mode 100644
index 00000000..4828136e
--- /dev/null
+++ b/web-ui/.eslintrc.json
@@ -0,0 +1,18 @@
+{
+ "extends": "airbnb",
+ "plugins": [
+ "react",
+ "jsx-a11y",
+ "import"
+ ],
+ "rules": {
+ "import/no-extraneous-dependencies": ["off"],
+ "import/extensions": ["off"],
+ "import/no-unresolved": ["off"],
+ "react/jsx-filename-extension": ["off"],
+ "jsx-quotes": ["error", "prefer-single"],
+ "no-undef": ["off"],
+ "comma-dangle": ["off"],
+ "semi": ["error", "never"]
+ }
+}