view client/.eslintrc.js @ 3686:59572a03cec6

client: diagram legend: prevent vertical overflow (when collapsed) from affecting diagram height
author Markus Kottlaender <markus@intevation.de>
date Tue, 18 Jun 2019 16:17:36 +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"
  }
};