view client/.eslintrc.js @ 249:e0f47d9ebde0

Hotfix: changed login call back to GET from POST. For some reason POST didn't work as intended: the credentials were not send... This is only a workaround, as POST would still be the right way to go...
author Sascha Wilde <wilde@intevation.de>
date Fri, 27 Jul 2018 11:04:20 +0200
parents 88d0d60924cf
children 3907a7b98067
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'
  }
}