Skip to content

Releases: EvgenyOrekhov/eslint-config-hardcore

v19.0.0 - Good Bye, CommonJS

26 Apr 20:00
Compare
Choose a tag to compare

Prefer ESM over CommonJS

See:


If you need to import *.json files in Node.js, you can use either:

  • load-json-file
  • --experimental-json-modules flag
  • import.meta.url with fs
import { readFile } from 'fs/promises';
const json = JSON.parse(await readFile(new URL('./dat.json', import.meta.url)));

v18.1.0

26 Apr 07:55
Compare
Choose a tag to compare

v18.0.1

22 Apr 12:56
Compare
Choose a tag to compare

Fix conflict between regexp/order-in-character-class and unicorn/better-regex by disabling regexp/order-in-character-class.

v18.0.0

22 Apr 11:29
Compare
Choose a tag to compare

Major changes

v17.4.0

19 Apr 06:37
Compare
Choose a tag to compare

v17.3.0

16 Apr 09:09
Compare
Choose a tag to compare

Ignore built-in globals that produce no-shadow false positives: defaultStatus, event, find, length, name, status

v17.2.0

15 Apr 12:25
Compare
Choose a tag to compare

v17.1.0

12 Apr 13:31
Compare
Choose a tag to compare

v17.0.0

07 Apr 20:31
Compare
Choose a tag to compare

Major changes

Minor changes

v16.8.0

29 Mar 14:53
Compare
Choose a tag to compare