@diplodoc/lint 1.2.0 → 1.3.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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,25 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.3.0](https://github.com/diplodoc-platform/lint/compare/v1.2.1...v1.3.0) (2025-07-02)
4
+
5
+
6
+ ### Features
7
+
8
+ * add @typescript-eslint/consistent-type-imports rule ([797126d](https://github.com/diplodoc-platform/lint/commit/797126d02acfff1202cb413b4d4f5cf83cbd918a))
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * Fix release actions ([926b7bf](https://github.com/diplodoc-platform/lint/commit/926b7bf0a0c36d657e0a990a6b1488994b2680a7))
14
+ * Update ignore list ([7a68c87](https://github.com/diplodoc-platform/lint/commit/7a68c87ef9f0bd5950343e1d1ee22c235ffbb242))
15
+
16
+ ## [1.2.1](https://github.com/diplodoc-platform/lint/compare/v1.2.0...v1.2.1) (2025-01-29)
17
+
18
+
19
+ ### Bug Fixes
20
+
21
+ * use `project: true` for @typescript-eslint/parser ([7ff1cad](https://github.com/diplodoc-platform/lint/commit/7ff1cadb73841072cdc48acb5ca151db2b5af82d))
22
+
3
23
  ## [1.2.0](https://github.com/diplodoc-platform/lint/compare/v1.1.3...v1.2.0) (2024-09-05)
4
24
 
5
25
 
@@ -50,5 +50,6 @@ module.exports = {
50
50
  ],
51
51
  },
52
52
  ],
53
+ "@typescript-eslint/consistent-type-imports": "error",
53
54
  },
54
55
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@diplodoc/lint",
3
- "version": "1.2.0",
3
+ "version": "1.3.0",
4
4
  "description": "Diplodoc platform internal utility set for linting",
5
5
  "bin": {
6
6
  "lint": "./bin/lint",
@@ -3,6 +3,6 @@ module.exports = {
3
3
  extends: require.resolve('@diplodoc/lint/eslint-config'),
4
4
  parserOptions: {
5
5
  tsconfigRootDir: __dirname,
6
- project: ['./tsconfig.json'],
6
+ project: true,
7
7
  },
8
8
  };
@@ -14,6 +14,7 @@ const ARTIFACTS = [
14
14
  '/build',
15
15
  '/cache',
16
16
  '/coverage',
17
+ '/external',
17
18
  ];
18
19
  const INSTALL = [
19
20
  'node_modules',