.eslintrc.js 481 B
Newer Older
Somnath Ghorpade's avatar
Somnath Ghorpade committed
module.exports = {
  root: true,
  env: {
    node: true
  },
  'extends': [
    "@vue/standard",
    "plugin:vue/vue3-strongly-recommended"
  ],
  rules: {
  "template-curly-spacing" : "off",
    "indent": ["error", 2, {
      "ignoredNodes": ["TemplateLiteral"]
    }],
    'no-console': process.env.NODE_ENV === 'production' ? 'error' : 'off',
    'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off',
    },
  parserOptions: {
    parser: 'babel-eslint'
  }
}