Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: upgrade therefore #38

Merged
merged 1 commit into from
May 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
7 changes: 0 additions & 7 deletions .eslintignore

This file was deleted.

1 change: 0 additions & 1 deletion .eslintrc.cjs

This file was deleted.

4 changes: 0 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
.*
__pycache__
node_modules
yalc.lock

!.github
!.vscode
Expand All @@ -10,6 +9,3 @@ yalc.lock

!.gitignore
!.gitkeep
!.eslintrc.*
!.prettierignore
!.eslintignore
11 changes: 0 additions & 11 deletions .prettierignore

This file was deleted.

4 changes: 4 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"recommendations": ["biomejs.biome"],
"unwantedRecommendations": ["esbenp.prettier-vscode", "dbaeumer.vscode-eslint"]
}
11 changes: 3 additions & 8 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,20 +1,16 @@
{
"[json]": {
"editor.tabSize": 2
},
"debug.javascript.terminalOptions": {
"remoteRoot": null,
"skipFiles": ["<node_internals>/**"],
"sourceMaps": true
},
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "always"
"source.organizeImports.biome": "explicit",
"quickfix.biome": "explicit"
},
"editor.defaultFormatter": "biomejs.biome",
"editor.formatOnSave": true,
"editor.wordSeparators": "`~!@#%^&*()-=+[{]}\\|;:'\",.<>/?",
"eslint.format.enable": true,
"eslint.lintTask.enable": true,
"eslint.validate": ["javascript", "typescript"],
"files.eol": "\n",
"files.exclude": {
"**/.coverage": true,
Expand All @@ -35,7 +31,6 @@
"**/node_modules/*/**": true,
"src/**/*.d.ts": true
},
"typescript.format.semicolons": "remove",
"typescript.implementationsCodeLens.enabled": true,
"typescript.preferences.autoImportFileExcludePatterns": ["**/index.ts"],
"typescript.referencesCodeLens.enabled": true,
Expand Down
3 changes: 3 additions & 0 deletions biome.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"extends": ["@skyleague/node-standards/biome"]
}
24 changes: 0 additions & 24 deletions build.config.ts

This file was deleted.

1 change: 0 additions & 1 deletion commitlint.config.cjs

This file was deleted.

1 change: 1 addition & 0 deletions commitlint.config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export default { extends: ['@commitlint/config-conventional'] }
Empty file added examples/.gitkeep
Empty file.
4 changes: 3 additions & 1 deletion lint-staged.config.cjs
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
module.exports = require('@skyleague/node-standards/lint-staged.config.cjs')
module.exports = {
'*': ['biome check --no-errors-on-unmatched --files-ignore-unknown=true --apply-unsafe'],
}
Loading