@diplodoc/lint 1.8.0 → 1.9.0

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.
@@ -1,3 +1,3 @@
1
1
  {
2
- ".": "1.8.0"
2
+ ".": "1.9.0"
3
3
  }
package/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.9.0](https://github.com/diplodoc-platform/lint/compare/v1.8.0...v1.9.0) (2025-12-29)
4
+
5
+
6
+ ### Features
7
+
8
+ * add dependabot.yml and improve security.yml in scaffolding ([baecc39](https://github.com/diplodoc-platform/lint/commit/baecc390e6d1f7d7916da74580c1c61b50f6017c))
9
+ * add update-deps and package-lock workflows to scaffolding ([20b1064](https://github.com/diplodoc-platform/lint/commit/20b106400f83b035d225377d101b082168140d80))
10
+
11
+
12
+ ### Bug Fixes
13
+
14
+ * remove trailing newlines from release-please-manifest template ([cea4d8c](https://github.com/diplodoc-platform/lint/commit/cea4d8c79b9d2a476a4bc75e68135cf6aa83e9b9))
15
+ * Skip scripts for package-lock update ([7cda090](https://github.com/diplodoc-platform/lint/commit/7cda0902140bcf0ec4f78c9f3ec95e11cb247e40))
16
+
3
17
  ## [1.8.0](https://github.com/diplodoc-platform/lint/compare/v1.7.2...v1.8.0) (2025-12-27)
4
18
 
5
19
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@diplodoc/lint",
3
- "version": "1.8.0",
3
+ "version": "1.9.0",
4
4
  "description": "Diplodoc platform internal utility set for linting",
5
5
  "bin": {
6
6
  "lint": "./bin/lint.js",
@@ -61,5 +61,19 @@
61
61
  },
62
62
  "devDependencies": {
63
63
  "fs-extra": "^11.3.3"
64
+ },
65
+ "overrides": {
66
+ "js-yaml": "^4.1.1",
67
+ "brace-expansion": "^2.0.2",
68
+ "minimatch": "^10.0.1",
69
+ "eslint-plugin-import": {
70
+ "minimatch": "^10.0.1"
71
+ },
72
+ "eslint-plugin-jsx-a11y": {
73
+ "minimatch": "^10.0.1"
74
+ },
75
+ "eslint-plugin-react": {
76
+ "minimatch": "^10.0.1"
77
+ }
64
78
  }
65
79
  }
@@ -1,5 +1,3 @@
1
1
  {
2
2
  ".": "{{PACKAGE_VERSION}}"
3
3
  }
4
-
5
-
@@ -31,7 +31,8 @@ const configContent = configTemplate
31
31
  .replace(/\{\{PACKAGE_NAME\}\}/g, packageName);
32
32
 
33
33
  const manifestContent = manifestTemplate
34
- .replace(/\{\{PACKAGE_VERSION\}\}/g, packageVersion);
34
+ .replace(/\{\{PACKAGE_VERSION\}\}/g, packageVersion)
35
+ .trimEnd(); // Remove trailing whitespace/newlines
35
36
 
36
37
  // Write files
37
38
  const configOutputPath = join(process.cwd(), '.release-please-config.json');