-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* drop eslint * remove eslintrc * drop prettier dep * drop vscode extensions * feat: add biome * feat: ci * feat: last biome * fix: missing extensions * more linting * feat(lint): more linting + tabs in vscode config
- Loading branch information
Showing
24 changed files
with
12,786 additions
and
12,723 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 |
---|---|---|
@@ -1,23 +1,23 @@ | ||
{ | ||
"version": "0.2", | ||
"language": "en", | ||
"words": [ | ||
"degit", | ||
"esbuild", | ||
"gjuchault", | ||
"octocat", | ||
"outdir", | ||
"rmrf", | ||
"ryansonshine", | ||
"socio", | ||
"tsdoc" | ||
], | ||
"flagWords": [], | ||
"ignorePaths": [ | ||
"package.json", | ||
"package-lock.json", | ||
"yarn.lock", | ||
"tsconfig.json", | ||
"node_modules/**" | ||
] | ||
"version": "0.2", | ||
"language": "en", | ||
"words": [ | ||
"degit", | ||
"esbuild", | ||
"gjuchault", | ||
"octocat", | ||
"outdir", | ||
"rmrf", | ||
"ryansonshine", | ||
"socio", | ||
"tsdoc" | ||
], | ||
"flagWords": [], | ||
"ignorePaths": [ | ||
"package.json", | ||
"package-lock.json", | ||
"yarn.lock", | ||
"tsconfig.json", | ||
"node_modules/**" | ||
] | ||
} |
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 |
---|---|---|
@@ -1,31 +1,31 @@ | ||
{ | ||
"branches": [ | ||
"+([0-9])?(.{+([0-9]),x}).x", | ||
"main", | ||
"master", | ||
"next", | ||
"next-major", | ||
{ | ||
"name": "beta", | ||
"prerelease": true | ||
}, | ||
{ | ||
"name": "alpha", | ||
"prerelease": true | ||
} | ||
], | ||
"repositoryUrl": "https://github.com/gjuchault/typescript-library-starter.git", | ||
"plugins": [ | ||
"@semantic-release/commit-analyzer", | ||
"@semantic-release/release-notes-generator", | ||
"@semantic-release/changelog", | ||
"@semantic-release/npm", | ||
[ | ||
"@semantic-release/github", | ||
{ | ||
"successComment": false, | ||
"failTitle": false | ||
} | ||
] | ||
] | ||
"branches": [ | ||
"+([0-9])?(.{+([0-9]),x}).x", | ||
"main", | ||
"master", | ||
"next", | ||
"next-major", | ||
{ | ||
"name": "beta", | ||
"prerelease": true | ||
}, | ||
{ | ||
"name": "alpha", | ||
"prerelease": true | ||
} | ||
], | ||
"repositoryUrl": "https://github.com/gjuchault/typescript-library-starter.git", | ||
"plugins": [ | ||
"@semantic-release/commit-analyzer", | ||
"@semantic-release/release-notes-generator", | ||
"@semantic-release/changelog", | ||
"@semantic-release/npm", | ||
[ | ||
"@semantic-release/github", | ||
{ | ||
"successComment": false, | ||
"failTitle": false | ||
} | ||
] | ||
] | ||
} |
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 |
---|---|---|
@@ -1,8 +1,7 @@ | ||
{ | ||
"recommendations": [ | ||
"dbaeumer.vscode-eslint", | ||
"esbenp.prettier-vscode", | ||
"eamodio.gitlens", | ||
"streetsidesoftware.code-spell-checker" | ||
] | ||
"recommendations": [ | ||
"biomejs.biome", | ||
"eamodio.gitlens", | ||
"streetsidesoftware.code-spell-checker" | ||
] | ||
} |
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 |
---|---|---|
@@ -1,21 +1,20 @@ | ||
{ | ||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"type": "node", | ||
"request": "launch", | ||
"name": "Debug Current Test File", | ||
"autoAttachChildProcesses": true, | ||
"skipFiles": ["<node_internals>/**", "**/node_modules/**"], | ||
"program": "${relativeFile}", | ||
"runtimeArgs": [ | ||
"--import=@nitrogql/esbuild-register", | ||
"--inspect", | ||
"--test" | ||
], | ||
"smartStep": true, | ||
"console": "integratedTerminal" | ||
} | ||
] | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"type": "node", | ||
"request": "launch", | ||
"name": "Debug Current Test File", | ||
"autoAttachChildProcesses": true, | ||
"skipFiles": ["<node_internals>/**", "**/node_modules/**"], | ||
"program": "${relativeFile}", | ||
"runtimeArgs": [ | ||
"--import=@nitrogql/esbuild-register", | ||
"--inspect", | ||
"--test" | ||
], | ||
"smartStep": true, | ||
"console": "integratedTerminal" | ||
} | ||
] | ||
} |
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 |
---|---|---|
@@ -1,9 +1,32 @@ | ||
{ | ||
// only use words from .cspell.json | ||
"cSpell.userWords": [], | ||
"cSpell.enabled": true, | ||
"editor.formatOnSave": true, | ||
"typescript.tsdk": "node_modules/typescript/lib", | ||
"typescript.enablePromptUseWorkspaceTsdk": true, | ||
"files.associations": { "*.json": "jsonc" } | ||
"cSpell.userWords": [], | ||
"cSpell.enabled": true, | ||
"editor.formatOnSave": true, | ||
"typescript.tsdk": "node_modules/typescript/lib", | ||
"typescript.enablePromptUseWorkspaceTsdk": true, | ||
"files.associations": { "*.json": "jsonc" }, | ||
"editor.indentSize": 2, | ||
"editor.insertSpaces": false, | ||
"editor.detectIndentation": false, | ||
"[javascript]": { | ||
"editor.defaultFormatter": "biomejs.biome" | ||
}, | ||
"[javascriptreact]": { | ||
"editor.defaultFormatter": "biomejs.biome" | ||
}, | ||
"[typescript]": { | ||
"editor.defaultFormatter": "biomejs.biome" | ||
}, | ||
"[typescriptreact]": { | ||
"editor.defaultFormatter": "biomejs.biome" | ||
}, | ||
"[json]": { | ||
"editor.defaultFormatter": "biomejs.biome" | ||
}, | ||
"[jsonc]": { | ||
"editor.defaultFormatter": "biomejs.biome" | ||
}, | ||
"[jsonl]": { | ||
"editor.defaultFormatter": "biomejs.biome" | ||
} | ||
} |
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 |
---|---|---|
@@ -1,24 +1,24 @@ | ||
{ | ||
"version": "2.0.0", | ||
"tasks": [ | ||
{ | ||
"label": "Run Current Test File", | ||
"type": "shell", | ||
"command": "node", | ||
"args": [ | ||
"--import=@nitrogql/esbuild-register", | ||
"--test", | ||
"${relativeFile}" | ||
], | ||
"presentation": { | ||
"clear": true, | ||
"showReuseMessage": false, | ||
"echo": false | ||
}, | ||
"group": { | ||
"kind": "test", | ||
"isDefault": true | ||
} | ||
} | ||
] | ||
"version": "2.0.0", | ||
"tasks": [ | ||
{ | ||
"label": "Run Current Test File", | ||
"type": "shell", | ||
"command": "node", | ||
"args": [ | ||
"--import=@nitrogql/esbuild-register", | ||
"--test", | ||
"${relativeFile}" | ||
], | ||
"presentation": { | ||
"clear": true, | ||
"showReuseMessage": false, | ||
"echo": false | ||
}, | ||
"group": { | ||
"kind": "test", | ||
"isDefault": true | ||
} | ||
} | ||
] | ||
} |
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.