Closed
Description
Tell us about your environment
- **ESLint Version: 4.3.0
- **eslint-plugin-vue Version: 3.9.0
- **Node Version: 6.11.2
Please show your full configuration:
// http://eslint.org/docs/user-guide/configuring
module.exports = {
root: true,
// https://github.com/feross/standard/blob/master/RULES.md#javascript-standard-style
extends: ['standard', 'plugin:vue/recommended'],
parserOptions: {
parser: 'babel-eslint',
sourceType: 'module'
},
env: {
browser: true
},
// add your custom rules here
rules: {
// allow paren-less arrow functions
'arrow-parens': 0,
// allow async-await
'generator-star-spacing': 0,
// allow debugger during development
'no-debugger': process.env.NODE_ENV === 'production' ? 2 : 0,
// allow shorthand for method definitions
'space-before-function-paren': 0
}
}
What did you do? Please include the actual source code causing the issue.
npm up
What did you expect to happen?
eslint-plugin-vue upgrade from 3.8.0 to 3.9.0 and work well
What actually happened? Please include the actual, raw output from ESLint.
totally broke down. 3.9.0 try to check js file with vue rules……