You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: docs/Tooling.md
+17-1
Original file line number
Diff line number
Diff line change
@@ -259,17 +259,29 @@ Using the _"everything"_ level will gain you comprehensive, strict coverage of a
259
259
260
260
[**Markdownlint**](https://github.com/DavidAnson/markdownlint): Linting for Markdown code.
261
261
262
+
```shell
263
+
pnpm lint:md
264
+
```
265
+
262
266
> This is a separate linter from ESLint, but will likely eventually be switched to an ESLint plugin ([#567](https://github.com/JoshuaKGoldberg/create-typescript-app/issues/567)).
263
267
264
268
### Lint Package JSON
265
269
266
270
[`npm-package-json-lint`](https://github.com/tclindner/npm-package-json-lint): Linting for `package.json` files.
267
271
272
+
```shell
273
+
pnpm lint:package-json
274
+
```
275
+
268
276
> This is a separate linter from ESLint, but will likely eventually be switched to an ESLint plugin ([#839](https://github.com/JoshuaKGoldberg/create-typescript-app/issues/839)).
269
277
270
278
### Lint Packages
271
279
272
-
Uses [`pnpm dedupe`](https://pnpm.io/cli/dedupe) to deduplicate
280
+
Uses [`pnpm dedupe`](https://pnpm.io/cli/dedupe) to deduplicate package dependencies.
281
+
282
+
```shell
283
+
pnpm lint:packages
284
+
```
273
285
274
286
> This is grouped with _"Lint"_ tooling pieces, but will likely eventually be renamed ([#896](https://github.com/JoshuaKGoldberg/create-typescript-app/issues/896)).
275
287
@@ -287,6 +299,10 @@ This plugin is quite particular -perfectionist, even- but all its rules include
287
299
[**CSpell**](https://cspell.org): Spell checking for code.
288
300
Helps detect typos based on a configurable user dictionary (`cspell.json`).
289
301
302
+
```shell
303
+
pnpm lint:spelling
304
+
```
305
+
290
306
> This is a separate linter from ESLint, but will likely eventually be switched to an ESLint plugin ([#897](https://github.com/JoshuaKGoldberg/create-typescript-app/issues/897)).
0 commit comments