view client/.eslintrc.js @ 4530:38ec0e25e7b1

Translated using Weblate (German (Austria)) Currently translated at 69.0% (298 of 432 strings) Translation: Gemma/client Translate-URL: https://hosted.weblate.org/projects/gemma/client/de_AT/
author Lukas Timler <lukas.timler@viadonau.org>
date Tue, 08 Oct 2019 14:39:19 +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"
  }
};