eslint-config-nodejs-pmb 0.3.8 → 0.3.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/rules.js +3 -1
package/package.json
CHANGED
package/rules.js
CHANGED
|
@@ -76,7 +76,9 @@ const rules = {
|
|
|
76
76
|
'unicode-bom': 'off',
|
|
77
77
|
|
|
78
78
|
// Ugly but unfortunately node v12+ native ESM forces us to:
|
|
79
|
-
'import/extensions': ['error', 'ignorePackages'],
|
|
79
|
+
// 'import/extensions': ['error', 'ignorePackages'],
|
|
80
|
+
// … and due to some 2024-ish breakage in @std/esm, we even need
|
|
81
|
+
'import/extensions': ['error', 'always'],
|
|
80
82
|
|
|
81
83
|
// rules docs: https://github.com/eslint/eslint.github.io/tree/master/docs/rules
|
|
82
84
|
};
|