view client/.eslintrc.js @ 2393:30b79a36b4a1

Translated using Weblate (Romanian) Currently translated at 94.6% (227 of 240 strings) Translation: Gemma/client Translate-URL: https://hosted.weblate.org/projects/gemma/client/ro/
author MANESCU CARMEN <compania@acn.ro>
date Mon, 25 Feb 2019 11:36:07 +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"
  }
};