Skip to content

Instantly share code, notes, and snippets.

@pridees
Created July 18, 2018 12:35
Show Gist options
  • Save pridees/223f09a43f41a013f438f78f8250f716 to your computer and use it in GitHub Desktop.
Save pridees/223f09a43f41a013f438f78f8250f716 to your computer and use it in GitHub Desktop.
module.exports = {
root: true,
parserOptions: {
parser: 'babel-eslint'
},
env: {
browser: true,
},
// https://github.com/vuejs/eslint-plugin-vue#priority-a-essential-error-prevention
// consider switching to `plugin:vue/strongly-recommended` or `plugin:vue/recommended` for stricter rules.
extends: ['plugin:vue/essential'],
// required to lint *.vue files
plugins: [
'vue'
],
// add your custom rules here
rules: {
"indent": ["error", 4],
// allow debugger during development
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off'
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment