@will-stone/eslint-config 15.0.2 → 15.0.4

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/README.md CHANGED
@@ -51,9 +51,6 @@ the following to your `package.json`:
51
51
 
52
52
  ```json
53
53
  {
54
- "scripts": {
55
- "prepare": "husky"
56
- },
57
54
  "lint-staged": {
58
55
  "*.{js,jsx,ts,tsx}": ["eslint --fix"]
59
56
  }
package/dist/index.js CHANGED
@@ -1268,7 +1268,6 @@ async function unicorn() {
1268
1268
  "unicorn/no-empty-file": "off",
1269
1269
  "unicorn/no-for-loop": "warn",
1270
1270
  "unicorn/no-hex-escape": "warn",
1271
- "unicorn/no-instanceof-array": "warn",
1272
1271
  "unicorn/no-instanceof-builtins": "warn",
1273
1272
  "unicorn/no-invalid-fetch-options": "error",
1274
1273
  "unicorn/no-invalid-remove-event-listener": "error",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@will-stone/eslint-config",
3
- "version": "15.0.2",
3
+ "version": "15.0.4",
4
4
  "description": "Will Stone's ESLint config",
5
5
  "keywords": [
6
6
  "eslint-config"
@@ -19,11 +19,11 @@
19
19
  ],
20
20
  "scripts": {
21
21
  "build": "tsup src/index.ts --format esm --clean --dts --shims",
22
- "predev": "npm run build",
22
+ "predev": "pnpm build",
23
23
  "dev": "tsup src/index.ts --format esm --shims --watch & config-inspector --config ./eslint-config-for-inspector.js",
24
- "lint": "npm run stub && eslint .",
24
+ "lint": "pnpm stub && eslint .",
25
25
  "prepare": "husky",
26
- "prepublishOnly": "npm run build",
26
+ "prepublishOnly": "pnpm build",
27
27
  "release": "release-it",
28
28
  "stub": "tsup src/index.ts --format esm",
29
29
  "test": "vitest",