Skip to content

Releases: hexojs/eslint-config-hexo

5.0.0

06 Jan 12:32
de33316
Compare
Choose a tag to compare

Breaking Changes

New features

Dependencies

Full Changelog: 4.2.0...5.0.0

4.2.0

18 Aug 13:57
418d964
Compare
Choose a tag to compare

New features

Fixes

4.1.0

17 Dec 09:43
9c8ad7e
Compare
Choose a tag to compare
  • must have a space between async and arrow function [#28]
    const foo = async(a) => await a
    • correct
    const foo = async (a) => await a

4.0.0

30 Nov 05:39
ada1570
Compare
Choose a tag to compare

Features

  • Support up to ES2020 syntax by using eslint-plugin-node v10 [#23]
  • Prefer ES6+ syntax [#22]
  • Remove deprecated/duplicated rules [#4], [#6], [#21]

Fix

  • Retain legacy URL API [#19]
    • Contrary to the description, Node 8 actually does support the newer WHATWG URL API.
    • However, it is later found that migrating completely to the newer API caused performance regression, so for now hexo uses a mixture of legacy and newer API. hexojs/hexo#3833, hexojs/hexo#3846