view client/.eslintrc.js @ 2375:7ef644279837

Translated using Weblate (Hungarian) Currently translated at 8.8% (21 of 240 strings) Translation: Gemma/client Translate-URL: https://hosted.weblate.org/projects/gemma/client/hu/
author Bede Csaba <csababede@gmail.com>
date Thu, 21 Feb 2019 13:45:55 +0000
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"
  }
};