view client/.eslintrc.js @ 4524:7cca4aa9a04a

Client: Map: improve rgba() values calculation for styling * set value of 1 in rgba() when the hex value does not contain opacity values(in case opacity=1)
author Fadi Abbud <fadi.abbud@intevation.de>
date Mon, 07 Oct 2019 13:30:55 +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"
  }
};