@allthings/eslint-config 3.5.0 → 3.5.1

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.
Files changed (3) hide show
  1. package/index.js +4 -0
  2. package/node.js +4 -0
  3. package/package.json +4 -2
package/index.js CHANGED
@@ -317,6 +317,7 @@ export default [
317
317
  allowList: {
318
318
  params: true,
319
319
  props: true,
320
+ utils: true,
320
321
  },
321
322
  replacements: {
322
323
  params: {
@@ -325,6 +326,9 @@ export default [
325
326
  props: {
326
327
  properties: false,
327
328
  },
329
+ utils: {
330
+ utilities: false,
331
+ },
328
332
  },
329
333
  },
330
334
  ],
package/node.js CHANGED
@@ -279,6 +279,7 @@ export default [
279
279
  allowList: {
280
280
  params: true,
281
281
  props: true,
282
+ utils: true,
282
283
  },
283
284
  replacements: {
284
285
  params: {
@@ -287,6 +288,9 @@ export default [
287
288
  props: {
288
289
  properties: false,
289
290
  },
291
+ utils: {
292
+ utilities: false,
293
+ },
290
294
  },
291
295
  },
292
296
  ],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@allthings/eslint-config",
3
- "version": "3.5.0",
3
+ "version": "3.5.1",
4
4
  "type": "module",
5
5
  "description": "ESlint shareable config for Allthings style",
6
6
  "main": "index.js",
@@ -26,7 +26,8 @@
26
26
  "test": "yarn test:audit && yarn test:behavioral",
27
27
  "test:audit": "node test/audit.js",
28
28
  "test:behavioral": "node test/behavioral.js",
29
- "deps": "yarn upgrade-interactive"
29
+ "deps": "yarn upgrade-interactive",
30
+ "prepare": "husky"
30
31
  },
31
32
  "dependencies": {
32
33
  "@stylistic/eslint-plugin": "^5.0.0",
@@ -57,6 +58,7 @@
57
58
  "@types/jest": "30.0.0",
58
59
  "@types/react": "18.3.28",
59
60
  "eslint": "9.39.4",
61
+ "husky": "^9.1.7",
60
62
  "prettier": "3.8.3",
61
63
  "react": "18.3.1",
62
64
  "semantic-release": "25.0.3",