1
0
mirror of synced 2024-11-22 05:16:05 +03:00
vue-formulario/.eslintrc.js

23 lines
503 B
JavaScript
Raw Normal View History

2018-01-31 01:21:21 +03:00
module.exports = {
root: true,
env: {
browser: true,
node: true
},
parserOptions: {
parser: 'babel-eslint'
},
extends: [
'standard',
// 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/recommended',
],
// required to lint *.vue files
plugins: [
'vue'
],
// add your custom rules here
rules: {}
}