Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
samchungy committed Nov 26, 2024
1 parent 73aa0c4 commit 01d387c
Show file tree
Hide file tree
Showing 4 changed files with 162 additions and 23 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@
"tsconfig-paths": "^4.0.0",
"tsconfig-seek": "2.0.0",
"tsx": "^4.16.2",
"typescript": "~5.7.0",
"typescript": "~5.7.2",
"validate-npm-package-name": "^6.0.0",
"zod": "^3.22.4"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/eslint-config-skuba/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
},
"devDependencies": {
"eslint": "^9.11.1",
"typescript": "~5.6.0"
"typescript": "^5.7.2"
},
"peerDependencies": {
"eslint": ">=9.11.1",
Expand Down
179 changes: 159 additions & 20 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ describe('tryMoveNpmrcOutOfIgnoreManagedSection', () => {
expect(writeFile.mock.calls.map((c) => c[0])).toEqual([
`~/project/${fileName}`,
]);
expect(writeFile.mock.calls.map((c) => c[1]).join('\n'))
expect((writeFile.mock.calls.map((c) => c[1]) as string[]).join('\n'))
.toMatchInlineSnapshot(`
"# managed by skuba
stuff
Expand Down

0 comments on commit 01d387c

Please sign in to comment.