@rhyster/eslint-config 1.7.33 → 1.8.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.
@@ -368,7 +368,7 @@ export declare const core: ({
368
368
  'consistent-this': "off";
369
369
  '@stylistic/eol-last': ["error", string];
370
370
  '@stylistic/function-call-argument-newline': ["error", string];
371
- '@stylistic/func-call-spacing': ["error", string];
371
+ '@stylistic/function-call-spacing': ["error", string];
372
372
  'func-name-matching': ["off", string, {
373
373
  includeCommonJSModuleExports: boolean;
374
374
  considerPropertyDescriptor: boolean;
@@ -1241,7 +1241,7 @@ export declare const node: [...({
1241
1241
  'consistent-this': "off";
1242
1242
  '@stylistic/eol-last': ["error", string];
1243
1243
  '@stylistic/function-call-argument-newline': ["error", string];
1244
- '@stylistic/func-call-spacing': ["error", string];
1244
+ '@stylistic/function-call-spacing': ["error", string];
1245
1245
  'func-name-matching': ["off", string, {
1246
1246
  includeCommonJSModuleExports: boolean;
1247
1247
  considerPropertyDescriptor: boolean;
@@ -2221,7 +2221,7 @@ export declare const browser: [...({
2221
2221
  'consistent-this': "off";
2222
2222
  '@stylistic/eol-last': ["error", string];
2223
2223
  '@stylistic/function-call-argument-newline': ["error", string];
2224
- '@stylistic/func-call-spacing': ["error", string];
2224
+ '@stylistic/function-call-spacing': ["error", string];
2225
2225
  'func-name-matching': ["off", string, {
2226
2226
  includeCommonJSModuleExports: boolean;
2227
2227
  considerPropertyDescriptor: boolean;
@@ -4257,7 +4257,7 @@ export declare const vue: ({
4257
4257
  'consistent-this': "off";
4258
4258
  '@stylistic/eol-last': ["error", string];
4259
4259
  '@stylistic/function-call-argument-newline': ["error", string];
4260
- '@stylistic/func-call-spacing': ["error", string];
4260
+ '@stylistic/function-call-spacing': ["error", string];
4261
4261
  'func-name-matching': ["off", string, {
4262
4262
  includeCommonJSModuleExports: boolean;
4263
4263
  considerPropertyDescriptor: boolean;
@@ -79,7 +79,7 @@ declare const _default: {
79
79
  'consistent-this': "off";
80
80
  '@stylistic/eol-last': ["error", string];
81
81
  '@stylistic/function-call-argument-newline': ["error", string];
82
- '@stylistic/func-call-spacing': ["error", string];
82
+ '@stylistic/function-call-spacing': ["error", string];
83
83
  'func-name-matching': ["off", string, {
84
84
  includeCommonJSModuleExports: boolean;
85
85
  considerPropertyDescriptor: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rhyster/eslint-config",
3
- "version": "1.7.33",
3
+ "version": "1.8.1",
4
4
  "description": "ESLint config",
5
5
  "type": "module",
6
6
  "exports": {
@@ -38,7 +38,7 @@
38
38
  "@types/confusing-browser-globals": "^1.0.3",
39
39
  "eslint": "^9.32.0",
40
40
  "jiti": "^2.5.1",
41
- "typescript": "^5.8.3",
41
+ "typescript": "^5.9.2",
42
42
  "unbuild": "^3.6.0"
43
43
  },
44
44
  "peerDependencies": {
@@ -46,15 +46,15 @@
46
46
  },
47
47
  "dependencies": {
48
48
  "@eslint/js": "^9.32.0",
49
- "@stylistic/eslint-plugin": "^4.4.1",
49
+ "@stylistic/eslint-plugin": "^5.2.2",
50
50
  "confusing-browser-globals": "^1.0.11",
51
51
  "eslint-import-resolver-typescript": "^4.4.4",
52
52
  "eslint-plugin-import-x": "^4.16.1",
53
- "eslint-plugin-n": "^17.21.0",
54
- "eslint-plugin-vue": "^10.3.0",
53
+ "eslint-plugin-n": "^17.21.3",
54
+ "eslint-plugin-vue": "^10.4.0",
55
55
  "globals": "^16.3.0",
56
56
  "typescript-eslint": "^8.38.0",
57
57
  "vue-eslint-parser": "^10.2.0"
58
58
  },
59
- "packageManager": "pnpm@10.13.1"
59
+ "packageManager": "pnpm@10.14.0"
60
60
  }
@@ -130,8 +130,8 @@ export default {
130
130
  '@stylistic/function-call-argument-newline': ['error', 'consistent'],
131
131
 
132
132
  // enforce spacing between functions and their invocations
133
- // https://eslint.style/rules/default/func-call-spacing
134
- '@stylistic/func-call-spacing': ['error', 'never'],
133
+ // https://eslint.style/rules/default/function-call-spacing
134
+ '@stylistic/function-call-spacing': ['error', 'never'],
135
135
 
136
136
  // requires function names to match the name of the variable or property to which they are
137
137
  // assigned