complete-lint 1.1.0 → 1.1.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.
Files changed (2) hide show
  1. package/README.md +1 -0
  2. package/package.json +3 -2
package/README.md CHANGED
@@ -236,6 +236,7 @@ These are the specific packages that `complete-lint` provides:
236
236
  - [`cspell`](https://github.com/streetsidesoftware/cspell) - A spell checker for code that is intended to be paired with the [Code Spell Checker VSCode extension](https://marketplace.visualstudio.com/items?itemName=streetsidesoftware.code-spell-checker). Even though this does not have to do with ESLint or Prettier, this is included in the meta-package because most projects should be linting for misspelled words.
237
237
  - [`cspell-check-unused-words`](https://github.com/Zamiell/cspell-check-unused-words) - A helpful script that can detect unused words inside your CSpell configuration, allowing you to clean up unnecessary entries.
238
238
  - [`eslint`](https://github.com/eslint/eslint) - The main linter engine for JavaScript/TypeScript, as explained above.
239
+ - [`eslint-import-resolver-typescript`](https://github.com/import-js/eslint-import-resolver-typescript) - Necessary for `eslint-plugin-import-x` to work properly, which is part of `eslint-config-complete`. (Even though it is a direct dependency of `eslint-config-complete`, it does not work properly when it is a nested transitive dependency, so it must explicitly be in this package.)
239
240
  - [`eslint-config-complete`](TODO) - Contains the master ESLint configuration.
240
241
  - [`knip`](https://github.com/webpro/knip) - A tool to look for unused files, dependencies, and exports. Even though this does not have to do with ESLint or Prettier, this is included in the meta-package because most projects should be linting for unused exports.
241
242
  - [`prettier`](https://github.com/prettier/prettier) - The main code formatter, as explained above.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "complete-lint",
3
- "version": "1.1.0",
3
+ "version": "1.1.2",
4
4
  "description": "A linting dependency meta-package for TypeScript projects.",
5
5
  "keywords": [
6
6
  "lint",
@@ -30,7 +30,8 @@
30
30
  "cspell": "^8.14.2",
31
31
  "cspell-check-unused-words": "^1.3.1",
32
32
  "eslint": "^9.10.0",
33
- "eslint-config-complete": "^1.0.0",
33
+ "eslint-config-complete": "^1.1.0",
34
+ "eslint-import-resolver-typescript": "^3.6.3",
34
35
  "knip": "^5.30.0",
35
36
  "prettier": "^3.3.3",
36
37
  "prettier-plugin-organize-imports": "^4.0.0",