summaryrefslogtreecommitdiff
path: root/.eslintrc.js
diff options
context:
space:
mode:
Diffstat (limited to '.eslintrc.js')
-rw-r--r--.eslintrc.js25
1 files changed, 25 insertions, 0 deletions
diff --git a/.eslintrc.js b/.eslintrc.js
new file mode 100644
index 00000000..8d83430f
--- /dev/null
+++ b/.eslintrc.js
@@ -0,0 +1,25 @@
+module.exports = {
+ root: true,
+ env: {
+ node: true
+ },
+ extends: ["plugin:vue/essential", "@vue/prettier"],
+ rules: {
+ "no-console": "off",
+ "no-debugger": process.env.NODE_ENV === "production" ? "error" : "off"
+ },
+ parserOptions: {
+ parser: "babel-eslint"
+ },
+ overrides: [
+ {
+ files: [
+ "**/__tests__/*.{j,t}s?(x)",
+ "**/tests/unit/**/*.spec.{j,t}s?(x)"
+ ],
+ env: {
+ jest: true
+ }
+ }
+ ]
+};