@agoric/eslint-config 0.4.1-ymax-v0.2-alpha-dev-a527ef4.0 → 0.5.0-u22.0

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/eslint-config.cjs CHANGED
@@ -65,9 +65,14 @@ module.exports = {
65
65
 
66
66
  'github/array-foreach': 'warn',
67
67
 
68
- // it doesn't support exports maps https://github.com/import-js/eslint-plugin-import/issues/1810
69
- // and most of our code is covered by tsc which does
70
- 'import/no-unresolved': 'off',
68
+ // Covered faster by TS
69
+ // https://typescript-eslint.io/troubleshooting/typed-linting/performance/#eslint-plugin-import
70
+ 'import/named': 'off',
71
+ 'import/namespace': 'off',
72
+ 'import/default': 'off',
73
+ 'import/no-named-as-default-member': 'off',
74
+ 'import/no-unresolved': 'off', // Plus no-unresolved doesn't support exports maps https://github.com/import-js/eslint-plugin-import/issues/1810
75
+
71
76
  'import/prefer-default-export': 'off',
72
77
 
73
78
  'jsdoc/no-multi-asterisks': ['warn', { allowWhitespace: true }],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agoric/eslint-config",
3
- "version": "0.4.1-ymax-v0.2-alpha-dev-a527ef4.0+a527ef4",
3
+ "version": "0.5.0-u22.0",
4
4
  "description": "Rules used by the @agoric packages",
5
5
  "main": "./eslint-config.cjs",
6
6
  "repository": {
@@ -25,7 +25,7 @@
25
25
  "eslint-config.*"
26
26
  ],
27
27
  "peerDependencies": {
28
- "@endo/eslint-plugin": "^2.3.0",
28
+ "@endo/eslint-plugin": "^2.4.0",
29
29
  "@jessie.js/eslint-plugin": "^0.4.2",
30
30
  "eslint": "^9.0.0",
31
31
  "eslint-config-airbnb-base": "^15.0.0",
@@ -34,9 +34,11 @@
34
34
  "eslint-plugin-github": "^5.1.4",
35
35
  "eslint-plugin-import": "^2.25.3",
36
36
  "eslint-plugin-jsdoc": "^46.4.3",
37
- "eslint-plugin-prettier": "^5.0.0",
38
37
  "prettier": "^3.4.2",
39
38
  "typescript-eslint": "^8.17.0"
40
39
  },
41
- "gitHead": "a527ef456b970107c2395833dce9abd87689959e"
40
+ "engines": {
41
+ "node": "^20.9 || ^22.11"
42
+ },
43
+ "gitHead": "dbf78c32d14bf4a38bfd7a10d061011a0ff368e6"
42
44
  }