Releases: vuejs/vue-eslint-parser
Releases · vuejs/vue-eslint-parser
v5.0.0
💥 Breaking changes
- 7113191 changed the AST of
slot-scope
attributes for vuejs/eslint-plugin-vue#722.
🐛 Bug fixes
- e44fc8b fixed crash on invalid filters (#37).
- 4840849 fixed wrong errors on function expressions in
v-on
directives (vuejs/eslint-plugin-vue#716). - 31425ae fixed a bug that the parser creates expression nodes in
v-pre
elements (vuejs/eslint-plugin-vue#733).
v4.0.3
v4.0.2
v4.0.1
v4.0.0
💥 Breaking changes
- 1fe4127 changed the AST for Vue.js filters syntax. It was
BinaryExpression
nodes before, but it'sVFilterSequenceExpression
nodes now.
This change fixes the issue vuejs/eslint-plugin-vue#687.
v3.3.0
v3.2.2
v3.2.1
v3.2.0
Enhancements
- 9b947b1 added the option
parserOptions.parser:false
to skip parsing<script>
elements completely. This is useful for the language ESLint community don't provide that custom parser.