Skip to content

Commit

Permalink
2019 Updates
Browse files Browse the repository at this point in the history
  • Loading branch information
ArjunAranetaCodes committed Jan 26, 2020
1 parent f4932f9 commit 37afd04
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions feathers-vuejs-mysql-login-reg/client/.eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
// https://eslint.org/docs/user-guide/configuring

module.exports = {
root: true,
parserOptions: {
parser: 'babel-eslint'
},
env: {
browser: true,
},
extends: [
// 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.
'plugin:vue/essential',
// https://github.com/standard/standard/blob/master/docs/RULES-en.md
'standard'
],
// required to lint *.vue files
plugins: [
'vue'
],
// add your custom rules here
rules: {
// allow async-await
'generator-star-spacing': 'off',
// allow debugger during development
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off'
}
}

0 comments on commit 37afd04

Please sign in to comment.