summaryrefslogtreecommitdiff
path: root/.eslintrc.json
diff options
context:
space:
mode:
Diffstat (limited to '.eslintrc.json')
-rw-r--r--.eslintrc.json17
1 files changed, 17 insertions, 0 deletions
diff --git a/.eslintrc.json b/.eslintrc.json
new file mode 100644
index 0000000..10970c2
--- /dev/null
+++ b/.eslintrc.json
@@ -0,0 +1,17 @@
+{
+ "parser": "@babel/eslint-parser",
+ "extends": ["eslint:recommended", "plugin:react/recommended"],
+ "rules": {
+ "no-unused-vars": ["error", { "argsIgnorePattern": "^_" }]
+ },
+ "settings": {
+ "react": {
+ "version": "detect"
+ }
+ },
+ "env": {
+ "browser": true,
+ "node": true,
+ "es6": true
+ }
+}