aboutsummaryrefslogblamecommitdiffhomepage
path: root/.eslintrc.js
blob: 2ac740011d0cee5ebd1fc130b97ec5a3e3f7cfa7 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15














                                                                           
module.exports = {
  root: true,
  env: {
    node: true,
  },
  extends: ["plugin:vue/essential", "eslint:recommended", "@vue/prettier"],
  parserOptions: {
    parser: "babel-eslint",
  },
  rules: {
    "no-console": "off",
    "no-debugger": process.env.NODE_ENV === "production" ? "warn" : "off",
    "vue/require-v-for-key": "off",
  },
};