view client/.eslintrc.js @ 3510:4d7b481e1d39 v3-uat2

import_configuration_overview: user country column
author Thomas Junk <thomas.junk@intevation.de>
date Tue, 28 May 2019 17:12:02 +0200
parents 3907a7b98067
children
line wrap: on
line source

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