Name | Modified | Size | Downloads / Week |
---|---|---|---|
Parent folder | |||
README.md | 2019-09-05 | 985 Bytes | |
v10.0.0.tar.gz | 2019-09-05 | 99.0 kB | |
v10.0.0.zip | 2019-09-05 | 223.6 kB | |
Totals: 3 Items | 323.6 kB | 0 |
This release supports BigInt and Dynamic Imports if you are using ESLint 6.2.0 or later.
💥 Breaking Changes
- [9ea67c] updated
node/no-unsupported-features/es-syntax
rule to recognize BigInt literals andimport()
. - [b91b48] updated
node/no-unsupported-features/es-builtins
rule to recognizeBigInt
,BigInt64Array
,BigUint64Array
, andPromise.allSettled
. - [b57a4f] updated
node/file-extension-in-import
,node/no-extraneous-import
,node/no-missing-import
, andnode/no-unpublished-import
rules to recognizeimport()
. - [4b9c4d] updated
node/no-deprecated-api
rule to recognizemodule.createRequireFromPath
. - [9c574b] updated
plugin:node/recommended
and the other configs.- It added
node/no-exports-assign
rule. - It changed
exports
global variable writable. - It enabled
node/*-import
rules in CommonJS mode as well.
- It added
✨ New rules
- [a0f0ee] added
node/no-exports-assign
rule that disallowsexports = {}
.