@alextheman/eslint-plugin 1.14.1 → 1.14.2

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/dist/index.cjs CHANGED
@@ -549,6 +549,9 @@ var require_globals = __commonJS({
549
549
  CSSFontFaceRule: false,
550
550
  CSSFontFeatureValuesRule: false,
551
551
  CSSFontPaletteValuesRule: false,
552
+ CSSFunctionDeclarations: false,
553
+ CSSFunctionDescriptors: false,
554
+ CSSFunctionRule: false,
552
555
  CSSGroupingRule: false,
553
556
  CSSImageValue: false,
554
557
  CSSImportRule: false,
@@ -1285,6 +1288,11 @@ var require_globals = __commonJS({
1285
1288
  SnapEvent: false,
1286
1289
  SourceBuffer: false,
1287
1290
  SourceBufferList: false,
1291
+ SpeechGrammar: false,
1292
+ SpeechGrammarList: false,
1293
+ SpeechRecognition: false,
1294
+ SpeechRecognitionErrorEvent: false,
1295
+ SpeechRecognitionEvent: false,
1288
1296
  speechSynthesis: false,
1289
1297
  SpeechSynthesis: false,
1290
1298
  SpeechSynthesisErrorEvent: false,
@@ -3707,7 +3715,7 @@ module.exports = __toCommonJS(index_exports);
3707
3715
 
3708
3716
  // package.json
3709
3717
  var name = "@alextheman/eslint-plugin";
3710
- var version = "1.14.1";
3718
+ var version = "1.14.2";
3711
3719
 
3712
3720
  // src/configs/alexPluginBase.ts
3713
3721
  function createAlexPluginBaseConfig(plugin) {
@@ -3785,7 +3793,7 @@ var typeScriptBase = [
3785
3793
  "@typescript-eslint/dot-notation": "error",
3786
3794
  "@typescript-eslint/explicit-member-accessibility": "error",
3787
3795
  "@typescript-eslint/method-signature-style": ["error", "property"],
3788
- "@typescript-eslint/no-deprecated": "error",
3796
+ "@typescript-eslint/no-deprecated": "warn",
3789
3797
  // Explicit any can be helpful sometimes, so it's not worth erroring on every single one.
3790
3798
  "@typescript-eslint/no-explicit-any": "off",
3791
3799
  "@typescript-eslint/no-redeclare": ["error", { ignoreDeclarationMerge: true }],
package/dist/index.d.cts CHANGED
@@ -3,7 +3,7 @@ import z from 'zod';
3
3
  import { Config } from 'prettier';
4
4
 
5
5
  var name = "@alextheman/eslint-plugin";
6
- var version = "1.14.1";
6
+ var version = "1.14.2";
7
7
 
8
8
  interface AlexPlugin {
9
9
  meta: {
package/dist/index.d.ts CHANGED
@@ -3,7 +3,7 @@ import z from 'zod';
3
3
  import { Config } from 'prettier';
4
4
 
5
5
  var name = "@alextheman/eslint-plugin";
6
- var version = "1.14.1";
6
+ var version = "1.14.2";
7
7
 
8
8
  interface AlexPlugin {
9
9
  meta: {
package/dist/index.js CHANGED
@@ -543,6 +543,9 @@ var require_globals = __commonJS({
543
543
  CSSFontFaceRule: false,
544
544
  CSSFontFeatureValuesRule: false,
545
545
  CSSFontPaletteValuesRule: false,
546
+ CSSFunctionDeclarations: false,
547
+ CSSFunctionDescriptors: false,
548
+ CSSFunctionRule: false,
546
549
  CSSGroupingRule: false,
547
550
  CSSImageValue: false,
548
551
  CSSImportRule: false,
@@ -1279,6 +1282,11 @@ var require_globals = __commonJS({
1279
1282
  SnapEvent: false,
1280
1283
  SourceBuffer: false,
1281
1284
  SourceBufferList: false,
1285
+ SpeechGrammar: false,
1286
+ SpeechGrammarList: false,
1287
+ SpeechRecognition: false,
1288
+ SpeechRecognitionErrorEvent: false,
1289
+ SpeechRecognitionEvent: false,
1282
1290
  speechSynthesis: false,
1283
1291
  SpeechSynthesis: false,
1284
1292
  SpeechSynthesisErrorEvent: false,
@@ -3692,7 +3700,7 @@ var require_globals2 = __commonJS({
3692
3700
 
3693
3701
  // package.json
3694
3702
  var name = "@alextheman/eslint-plugin";
3695
- var version = "1.14.1";
3703
+ var version = "1.14.2";
3696
3704
 
3697
3705
  // src/configs/alexPluginBase.ts
3698
3706
  function createAlexPluginBaseConfig(plugin) {
@@ -3770,7 +3778,7 @@ var typeScriptBase = [
3770
3778
  "@typescript-eslint/dot-notation": "error",
3771
3779
  "@typescript-eslint/explicit-member-accessibility": "error",
3772
3780
  "@typescript-eslint/method-signature-style": ["error", "property"],
3773
- "@typescript-eslint/no-deprecated": "error",
3781
+ "@typescript-eslint/no-deprecated": "warn",
3774
3782
  // Explicit any can be helpful sometimes, so it's not worth erroring on every single one.
3775
3783
  "@typescript-eslint/no-explicit-any": "off",
3776
3784
  "@typescript-eslint/no-redeclare": ["error", { ignoreDeclarationMerge: true }],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alextheman/eslint-plugin",
3
- "version": "1.14.1",
3
+ "version": "1.14.2",
4
4
  "description": "A package to provide custom ESLint rules and configs",
5
5
  "license": "ISC",
6
6
  "author": "alextheman",
@@ -25,17 +25,17 @@
25
25
  },
26
26
  "dependencies": {
27
27
  "common-tags": "^1.8.2",
28
- "eslint-plugin-package-json": "^0.56.2",
29
- "zod": "^4.1.5"
28
+ "eslint-plugin-package-json": "^0.56.3",
29
+ "zod": "^4.1.9"
30
30
  },
31
31
  "devDependencies": {
32
32
  "@types/common-tags": "^1.8.4",
33
33
  "@types/eslint": "^9.6.1",
34
- "@types/node": "^24.3.1",
35
- "@typescript-eslint/rule-tester": "^8.42.0",
36
- "@typescript-eslint/utils": "^8.42.0",
34
+ "@types/node": "^24.5.2",
35
+ "@typescript-eslint/rule-tester": "^8.44.0",
36
+ "@typescript-eslint/utils": "^8.44.0",
37
37
  "eslint-plugin-eslint-plugin": "^7.0.0",
38
- "globals": "^16.3.0",
38
+ "globals": "^16.4.0",
39
39
  "husky": "^9.1.7",
40
40
  "jiti": "^2.5.1",
41
41
  "prettier": "^3.6.2",