view client/.eslintrc.js @ 5313:1b4cb1545a44 zpg-exception

Allow ZPG as available depth-reference under stricter rules LDC is present but no ZPG => add ZPG to the list LDC is not present and no ZPG but BN is BG or RO => add ZPG to the list
author Thomas Junk <thomas.junk@intevation.de>
date Wed, 16 Jun 2021 14:08:39 +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"
  }
};