diff --git a/.eslintignore b/.eslintignore new file mode 100644 index 0000000..53c37a1 --- /dev/null +++ b/.eslintignore @@ -0,0 +1 @@ +dist \ No newline at end of file diff --git a/.eslintrc.json b/.eslintrc.json new file mode 100644 index 0000000..f020c3c --- /dev/null +++ b/.eslintrc.json @@ -0,0 +1,12 @@ +{ + "extends": "airbnb-base", + "plugins": [ + "import" + ], + "rules": { + "no-use-before-define": "off", + "arrow-parens": ["error", "as-needed"], + "no-shadow": "off", + "no-console": ["error", { "allow": ["warn", "error"] }] + } +}