@html-validate/eslint-config-typescript 6.16.0 → 6.17.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.
Files changed (2) hide show
  1. package/index.mjs +10 -0
  2. package/package.json +4 -4
package/index.mjs CHANGED
@@ -113,5 +113,15 @@ export default defineConfig({
113
113
  ignoreDifferentlyNamedParameters: true,
114
114
  },
115
115
  ],
116
+
117
+ /* disable unicorn rules covered by typescript or @typescript-eslint */
118
+ "unicorn/no-new-array": "off" /* @typescript-eslint/no-array-constructor */,
119
+ "unicorn/no-new-buffer": "off" /* @typescript-eslint/no-deprecated */,
120
+ "unicorn/no-this-assignment": "off" /* @typescript-eslint/no-this-alias */,
121
+ "unicorn/no-unnecessary-await": "off" /* @typescript-eslint/await-thenable */,
122
+ "unicorn/prefer-includes": "off" /* @typescript-eslint/prefer-includes */,
123
+ "unicorn/prefer-keyboard-event-key": "off" /* @typescript-eslint/no-deprecated */,
124
+ "unicorn/prefer-string-starts-ends-with":
125
+ "off" /* @typescript-eslint/prefer-string-starts-ends-with */,
116
126
  },
117
127
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@html-validate/eslint-config-typescript",
3
- "version": "6.16.0",
3
+ "version": "6.17.4",
4
4
  "description": "Eslint sharable config used by the various HTML-validate packages",
5
5
  "keywords": [
6
6
  "eslint",
@@ -30,8 +30,8 @@
30
30
  },
31
31
  "dependencies": {
32
32
  "eslint-plugin-import": "2.32.0",
33
- "eslint-plugin-tsdoc": "0.5.0",
34
- "typescript-eslint": "8.56.0"
33
+ "eslint-plugin-tsdoc": "0.5.2",
34
+ "typescript-eslint": "8.56.1"
35
35
  },
36
36
  "peerDependencies": {
37
37
  "eslint": "^9.0.0"
@@ -43,5 +43,5 @@
43
43
  "publishConfig": {
44
44
  "access": "public"
45
45
  },
46
- "gitHead": "eca3fda53d932f0237a955cdd1b970b2b12d213d"
46
+ "gitHead": "9bb36eadac0800ab07d05533ed42f4f17592f513"
47
47
  }