Skip to content

Commit

Permalink
Modernize codebase
Browse files Browse the repository at this point in the history
  • Loading branch information
henryruhs committed Feb 7, 2025
1 parent d6e3196 commit 45da050
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 16 deletions.
10 changes: 0 additions & 10 deletions .eslintrc

This file was deleted.

4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Node 20
- name: Set up Node 22
uses: actions/setup-node@v4
with:
node-version: 20
node-version: 22
- run: npm install
- run: npm run lint
2 changes: 1 addition & 1 deletion LICENSE.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
MIT license

Copyright (c) 2024 Henry Ruhs
Copyright (c) 2025 Henry Ruhs
4 changes: 4 additions & 0 deletions eslint.config.cjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
module.exports =
[
...require('@isnotdefined/eslint-config/common')
]
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@
"license": "MIT",
"devDependencies":
{
"@isnotdefined/eslint-config": "9.8.0",
"eslint": "8.57.0"
"@isnotdefined/eslint-config": "10.0.0",
"eslint": "9.19.0"
},
"scripts":
{
"lint": "eslint . --ext .js",
"lint": "eslint .",
"fix": "npm run lint -- --fix"
}
}

0 comments on commit 45da050

Please sign in to comment.