Skip to content

Commit

Permalink
build(deps): update latest
Browse files Browse the repository at this point in the history
  • Loading branch information
theoludwig committed Nov 11, 2024
1 parent dd70d6d commit 54e45d3
Show file tree
Hide file tree
Showing 8 changed files with 1,789 additions and 846 deletions.
4 changes: 0 additions & 4 deletions .eslintrc.json

This file was deleted.

4 changes: 2 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- name: "Setup Node.js"
uses: "actions/setup-node@v4.0.3"
with:
node-version: "22.x"
node-version: "lts/*"
cache: "npm"

- name: "Install dependencies"
Expand All @@ -25,7 +25,7 @@ jobs:
- run: "node --run lint:markdown"
- run: "node --run lint:eslint"
- run: "node --run lint:prettier"
- run: "node --run lint:javascript"
- run: "node --run lint:typescript"

commitlint:
runs-on: "ubuntu-latest"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- name: "Setup Node.js"
uses: "actions/setup-node@v4.0.3"
with:
node-version: "22.x"
node-version: "lts/*"
cache: "npm"

- name: "Install dependencies"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- name: "Setup Node.js"
uses: "actions/setup-node@v4.0.3"
with:
node-version: "22.x"
node-version: "lts/*"
cache: "npm"

- name: "Install dependencies"
Expand Down
13 changes: 13 additions & 0 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import typescriptESLint from "typescript-eslint"
import configConventions from "eslint-config-conventions"

export default typescriptESLint.config(...configConventions, {
files: ["**/*.ts", "**/*.tsx"],
languageOptions: {
parser: typescriptESLint.parser,
parserOptions: {
projectService: true,
tsconfigRootDir: import.meta.dirname,
},
},
})
Loading

0 comments on commit 54e45d3

Please sign in to comment.