complete-lint 1.3.0 → 1.4.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.
Files changed (2) hide show
  1. package/README.md +1 -0
  2. package/package.json +2 -1
package/README.md CHANGED
@@ -232,6 +232,7 @@ jobs:
232
232
  These are the specific packages that `complete-lint` provides:
233
233
 
234
234
  - [`@prettier/plugin-xml`](https://github.com/prettier/plugin-xml) - Allows Prettier to format XML files, which are common in some kinds of projects.
235
+ - [`@types/node`](https://www.npmjs.com/package/@types/node) - The types for the Node.js runtime. This is included since it is expected that you will be linting your project with a TypeScript script.
235
236
  - [`complete-node`](/complete-node) - A library that allows you to easily create a linting script to run several tools at once.
236
237
  - [`complete-tsconfig`](/complete-tsconfig) - A collection of TypeScript configuration files that allow for maximum safety.
237
238
  - [`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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "complete-lint",
3
- "version": "1.3.0",
3
+ "version": "1.4.0",
4
4
  "description": "A linting dependency meta-package for TypeScript projects.",
5
5
  "keywords": [
6
6
  "lint",
@@ -26,6 +26,7 @@
26
26
  ],
27
27
  "dependencies": {
28
28
  "@prettier/plugin-xml": "^3.4.1",
29
+ "@types/node": "^22.5.4",
29
30
  "complete-node": "^1.1.0",
30
31
  "complete-tsconfig": "^1.0.0",
31
32
  "cspell": "^8.14.2",