view client/.eslintrc.js @ 4361:8a26225b6133 fa-round-in-backend

client: change AvailableFairwayDepth diagram * Use days from the backend to draw the AvailableFairwayDepth diagram, by removing the hoursInDays() function.
author Bernhard Reiter <bernhard@intevation.de>
date Mon, 09 Sep 2019 17:24:14 +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"
  }
};