Skip to content

Commit a4e2a45

Browse files
fix: [email protected], and a few package removals
1 parent 14f74cf commit a4e2a45

File tree

4 files changed

+12
-3
lines changed

4 files changed

+12
-3
lines changed

.github/DEVELOPMENT.md

+8
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,14 @@ Each should be shown in VS Code, and can be run manually on the command-line:
4848
- `pnpm lint:packages` ([pnpm dedupe --check](https://pnpm.io/cli/dedupe)): Checks for unnecessarily duplicated packages in the `pnpm-lock.yml` file
4949
- `pnpm lint:spelling` ([cspell](https://cspell.org)): Spell checks across all source files
5050

51+
Read the individual documentation for each linter to understand how it can be configured and used best.
52+
53+
For example, ESLint can be run with `--fix` to auto-fix some lint rule complaints:
54+
55+
```shell
56+
pnpm run lint --fix
57+
```
58+
5159
## Testing
5260

5361
[Vitest](https://vitest.dev) is used for tests.

src/steps/finalizeDependencies.ts

+2
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ export async function finalizeDependencies(options: Options) {
1313
"eslint-plugin-eslint-comments",
1414
"eslint-plugin-jsdoc",
1515
"eslint-plugin-n",
16+
"eslint-plugin-import",
17+
"eslint-plugin-prettier",
1618
"eslint-plugin-regexp",
1719
"husky",
1820
"lint-staged",

src/steps/writing/creation/dotGitHub/createWorkflows.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -284,7 +284,7 @@ describe("createWorkflows", () => {
284284
- env:
285285
GITHUB_TOKEN: \${{ secrets.ACCESS_TOKEN }}
286286
NPM_TOKEN: \${{ secrets.NPM_TOKEN }}
287-
uses: JoshuaKGoldberg/[email protected].1
287+
uses: JoshuaKGoldberg/[email protected].2
288288
289289
name: Release
290290

src/steps/writing/creation/dotGitHub/createWorkflows.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ export function createWorkflows(options: Options) {
187187
GITHUB_TOKEN: "${{ secrets.ACCESS_TOKEN }}",
188188
NPM_TOKEN: "${{ secrets.NPM_TOKEN }}",
189189
},
190-
uses: "JoshuaKGoldberg/[email protected].1",
190+
uses: "JoshuaKGoldberg/[email protected].2",
191191
},
192192
],
193193
}),
@@ -202,7 +202,6 @@ export function createWorkflows(options: Options) {
202202
{
203203
name: "Codecov",
204204
uses: "codecov/codecov-action@v3",
205-
with: { "github-token": "${{ secrets.GITHUB_TOKEN }}" },
206205
},
207206
],
208207
}),

0 commit comments

Comments
 (0)