src_js/iconolab-bundle/.eslintrc.js
author durandn
Fri, 16 Sep 2016 16:19:01 +0200
changeset 186 5dcc09a350a6
parent 146 f912b591e1c1
permissions -rw-r--r--
refactored footer html into its own template

module.exports = {
  root: true,
  parserOptions: {
    sourceType: 'module'
  },
  // https://github.com/feross/standard/blob/master/RULES.md#javascript-standard-style
  extends: 'standard',
  // required to lint *.vue files
  plugins: [
    'html'
  ],
  // add your custom rules here
  'rules': {
    // allow paren-less arrow functions
    'arrow-parens': 0,
    // no-multiple-empty-lines
    'no-multiple-empty-lines': 0,
    'semi': 1,
    // allow debugger during development
    'no-debugger': process.env.NODE_ENV === 'production' ? 2 : 0

  }
}