Skip to content

Commit

Permalink
style: format file
Browse files Browse the repository at this point in the history
  • Loading branch information
stephen-shopopop committed Oct 28, 2024
1 parent d16a294 commit 0ef10b4
Show file tree
Hide file tree
Showing 5 changed files with 72 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deno.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ name: Deno

on:
push:
branches: ["main"]
branches: ['main']
pull_request:
branches: ["main"]
branches: ['main']

permissions:
contents: read
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,5 +33,5 @@ jobs:
uses: stefanzweifel/git-auto-commit-action@v4
with:
branch: main
commit_message: "docs: update CHANGELOG.md for ${{ github.ref_name }} [skip ci]"
commit_message: 'docs: update CHANGELOG.md for ${{ github.ref_name }} [skip ci]'
file_pattern: CHANGELOG.md
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ docs.json
module.bundle.js
cov_profile
bin
docs
coverage

# Logs
logs
Expand Down
44 changes: 41 additions & 3 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,47 @@
{
"recommendations": [
"denoland.vscode-deno",
"eamodio.gitlens",
"aaron-bond.better-comments",
"nicoespeon.abracadabra",
"mutantdino.resourcemonitor"
// Code quality
"aaron-bond.better-comments",
"kisstkondoros.vscode-codemetrics",
"SonarSource.sonarlint-vscode",
"streetsidesoftware.code-spell-checker",
// Docker
"ms-vscode-remote.remote-containers",
"ms-azuretools.vscode-docker",
// Documentation
"42Crunch.vscode-openapi",
"arjun.swagger-viewer",
"asyncapi.asyncapi-preview",
// Markdown
"DavidAnson.vscode-markdownlint",
"yzhang.markdown-all-in-one",
"bierner.markdown-mermaid",
// Github
"github.vscode-pull-request-github",
"vivaxy.vscode-conventional-commits",
"eamodio.gitlens",
"usernamehw.errorlens",
"github.vscode-github-actions",
// Theme
"chadalen.vscode-jetbrains-icon-theme",
"qvist.jetbrains-new-ui-dark-theme",
// Tools
"mutantdino.resourcemonitor",
"fabiospampinato.vscode-open-in-github",
"antfu.open-in-github-button",
"quicktype.quicktype",
"gruntfuggly.todo-tree",
"antfu.array-index-inlay",
// Http client
"rangav.vscode-thunder-client",
// Database
"cweijan.dbclient-jdbc",
// Env file
"mikestead.dotenv",
// For me
"ms-ceintl.vscode-language-pack-fr",
"ms-toolsai.jupyter"
]
}
27 changes: 26 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,30 @@
"https://deno.land": true
},
"editor.formatOnSave": true,
"editor.defaultFormatter": "denoland.vscode-deno"
"editor.defaultFormatter": "denoland.vscode-deno",
"[typescriptreact]": {
"editor.defaultFormatter": "denoland.vscode-deno"
},
"[typescript]": {
"editor.defaultFormatter": "denoland.vscode-deno"
},
"[javascriptreact]": {
"editor.defaultFormatter": "denoland.vscode-deno"
},
"[javascript]": {
"editor.defaultFormatter": "denoland.vscode-deno"
},
"[markdown]": {
"editor.defaultFormatter": "denoland.vscode-deno"
},
"[json]": {
"editor.defaultFormatter": "denoland.vscode-deno"
},
"editor.fontFamily": "Jetbrains Mono, Monaco, 'Courier New', monospace",
"editor.fontSize": 13,
"editor.lineHeight": 1.4,
"errorLens.gutterIconsEnabled": true,
"errorLens.gutterIconSet": "borderless",
"errorLens.followCursor": "activeLine",
"editor.acceptSuggestionOnEnter": "on"
}

0 comments on commit 0ef10b4

Please # to comment.