Releases: vuejs/vue-eslint-parser
Releases · vuejs/vue-eslint-parser
v2.0.3
v2.0.2
v2.0.1
vue-eslint-parser
has been rewritten completely!
Now vue-eslint-parser
gets the ability to parse <template>
(only HTML) in .vue
files to AST.
- New
parserServices
:defineTemplateBodyVisitor(templateVisitor, scriptVisitor)
... returns ESLint visitor to traverse<template>
.getTemplateBodyTokenStore()
... returns ESLintTokenStore
to get the tokens of<template>
.
- ast.md is
<template>
AST specification. - mustache-interpolation-spacing.js is an example.
v1.1.0-0
This is experimental version.
Features
vue-eslint-parser
parses<template>
of single file components.- Plugin rules can traverse the AST of
<template>
. - Plugin rules can get tokens of the AST to check styles.
- Plugin rules can get external references in expressions of directives to check typo or something like.
- Plugin rules can traverse the AST of
v1.0.0
No change. It gets stable.
v0.2.0
Breaking changes
- 5766096 changed the minimum ESLint version
vue-eslint-parser
supports. It requires 3.9.0 or later.
The reason is thatvue-eslint-parser
needsparserServices
feature to release the capabilities to access ASTs of<template>
in future.
If no problem, I will release 1.0.0 with this version after a few day.
v0.1.4
v0.1.3
Features
- b16a6c1 added the feature to use custom parsers to parse the inside of
<script>
tags (#1).
See also README.md#options.
Docs
- 5f7f5fc added the notation about the rules which are working incorrectly to "known limitations" section.
See also README.md#known-limitations.
Chore
- b16a6c1...fd92c13 added tests more than 10000 cases. It runs the tests of ESLint core rules as making a use of this custom parser.