@shi-corp/development-utilities 1.0.5 → 1.0.6

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.
@@ -48,6 +48,7 @@ export const eslintConfig = tseslint.config(eslint.configs.recommended, jsdoc.co
48
48
  '@typescript-eslint/no-unused-vars': [
49
49
  'warn',
50
50
  {
51
+ 'argsIgnorePattern': '^_',
51
52
  'caughtErrors': 'none'
52
53
  }
53
54
  ],
@@ -332,7 +333,14 @@ export const eslintConfig = tseslint.config(eslint.configs.recommended, jsdoc.co
332
333
  'stylistic/no-mixed-operators': 'warn',
333
334
  'stylistic/no-mixed-spaces-and-tabs': 'warn',
334
335
  'stylistic/no-multi-spaces': 'warn',
335
- 'stylistic/no-multiple-empty-lines': 'warn',
336
+ 'stylistic/no-multiple-empty-lines': [
337
+ 'warn',
338
+ {
339
+ 'max': 1,
340
+ 'maxBOF': 0,
341
+ 'maxEOF': 1
342
+ }
343
+ ],
336
344
  'stylistic/no-tabs': 'warn',
337
345
  'stylistic/no-trailing-spaces': 'warn',
338
346
  'stylistic/no-whitespace-before-property': 'warn',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shi-corp/development-utilities",
3
- "version": "1.0.5",
3
+ "version": "1.0.6",
4
4
  "description": "Collection of configurations, settings and packages to be common across multiple products/repositories.",
5
5
  "main": "bin/index.js",
6
6
  "type": "module",
@@ -34,8 +34,8 @@
34
34
  "homepage": "https://github.com/Software-Hardware-Integration-Lab/Development-Utilities#readme",
35
35
  "dependencies": {
36
36
  "@stylistic/eslint-plugin": "~5.2.3",
37
- "eslint": "~9.34.0",
38
- "eslint-plugin-jsdoc": "~54.1.1",
37
+ "eslint": "~9.35.0",
38
+ "eslint-plugin-jsdoc": "~57.0.8",
39
39
  "typescript-eslint": "~8.40.0"
40
40
  },
41
41
  "devDependencies": {
@@ -43,8 +43,8 @@
43
43
  "@types/eslint": "~9.6.1",
44
44
  "@types/mocha": "~10.0.10",
45
45
  "chai": "~6.0.1",
46
- "mocha": "~11.7.1",
47
- "next": "~15.5.0",
46
+ "mocha": "~11.7.2",
47
+ "next": "~15.5.3",
48
48
  "typescript": "~5.9.2"
49
49
  },
50
50
  "overrides": {