-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Move prettierrc to package.json * Update submodule * Update eslint and esbuild - No need to lint the build - Update eslint@9, [email protected], @typescript-eslint/*@8 * Update license.txt * update thqby copyright year * Cleanup eslint v9 usage * Fix some lint * Fix ESLint errors * Fixup misc issues (tests still failing) * re-lint files * Fix test name typo * Fix matchAll * Fixup npm scripts Use package.json conventions https://eslint.org/docs/latest/contribute/package-json-conventions * Use Node 22 * Cleanup npm scripts * Remove prebuild only 1 file in folder * Update npm scripts a bit
- Loading branch information
1 parent
0762124
commit f95384c
Showing
35 changed files
with
2,967 additions
and
1,631 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,7 @@ | |
.idea/ | ||
.@vscode/test-electron/ | ||
.vscode-test/ | ||
dist | ||
node_modules | ||
out | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,7 @@ | |
.idea/ | ||
.@vscode/test-electron/ | ||
.vscode-test/ | ||
dist | ||
node_modules | ||
out | ||
src/ahk2 | ||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
import eslint from '@eslint/js'; | ||
import tseslint from 'typescript-eslint'; | ||
|
||
export default tseslint.config( | ||
eslint.configs.recommended, | ||
...tseslint.configs.recommended, | ||
{ | ||
ignores: ['out', 'dist', '**/*.d.ts', 'src/ahk2'], | ||
}, | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.