view client/.eslintrc.js @ 5545:a4fa1bf9b208 aggregate-gm-import-logging

Aggregate to 'bla: 1 (baz); 2 (foo, bar)' instead of 'bla: foo (2), baz (1), bar (2)'.
author Sascha L. Teichmann <sascha.teichmann@intevation.de>
date Fri, 29 Oct 2021 00:07:50 +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"
  }
};