view client/.eslintrc.js @ 4369:7c91cb922352

client: fix systemconfiguration classbreak layout * Use more width for a single classbreak so that in case of negative numbers with two digits after the decimal point (e.g. `-0.05`), we can still see the right most digit.
author Bernhard Reiter <bernhard@intevation.de>
date Wed, 11 Sep 2019 10:00:52 +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"
  }
};