diff options
Diffstat (limited to 'web-ui/.eslintrc.json')
-rw-r--r-- | web-ui/.eslintrc.json | 18 |
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..554498f9 --- /dev/null +++ b/web-ui/.eslintrc.json @@ -0,0 +1,18 @@ +/* see https://github.com/airbnb/javascript for lint rules */ +{ + "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"] + } +} |