Skip to content

Releases: vuejs/vue-eslint-parser

v2.0.3

02 Jul 14:59
v2.0.3
de3fe7f
Compare
Choose a tag to compare

Bug fixes

  • f115c26 fixed to allow empty directive values.

v2.0.2

07 Jan 13:07
v2.0.2
6111437
Compare
Choose a tag to compare

Bug fixes

  • 812fd21 fixed a bug that context.parserServices.defineTemplateBodyVisitor() doesn't work if AST object was reused.

v2.0.1

31 Dec 04:19
340b66a
Compare
Choose a tag to compare

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 ESLint TokenStore to get the tokens of <template>.
  • ast.md is <template> AST specification.
  • mustache-interpolation-spacing.js is an example.

v1.1.0-0

22 Apr 07:24
v1.1.0-0
158cff9
Compare
Choose a tag to compare
v1.1.0-0 Pre-release
Pre-release

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.

v1.0.0

29 Dec 14:35
d21b3ac
Compare
Choose a tag to compare

No change. It gets stable.

v0.2.0

22 Dec 04:17
v0.2.0
5b10284
Compare
Choose a tag to compare
v0.2.0 Pre-release
Pre-release

Breaking changes

  • 5766096 changed the minimum ESLint version vue-eslint-parser supports. It requires 3.9.0 or later.
    The reason is that vue-eslint-parser needs parserServices 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

19 Dec 01:52
v0.1.4
94ee8fd
Compare
Choose a tag to compare
v0.1.4 Pre-release
Pre-release

Bug fixes

  • fba8613 removed postinstall script which has caused an installation problem.

v0.1.3

17 Dec 12:42
v0.1.3
b3a780a
Compare
Choose a tag to compare
v0.1.3 Pre-release
Pre-release

Features

Docs

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.

v0.1.2

17 Dec 06:12
v0.1.2
33eb3e5
Compare
Choose a tag to compare
v0.1.2 Pre-release
Pre-release

Bug fixes

  • c3150da fixed the problem about files which have CRLF linebreak style (#4).

v0.1.1

16 Dec 04:22
v0.1.1
483e006
Compare
Choose a tag to compare
v0.1.1 Pre-release
Pre-release

Bug fixes

  • 7576255 fixed the problem of lines-around-directive rule (#2).