Skip to content

Commit

Permalink
chore: wip
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisbbreuer committed May 13, 2024
1 parent d667b1b commit 01ed0db
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 63 deletions.
2 changes: 2 additions & 0 deletions .vscode/dictionary.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
antfu
biomejs
booleanish
bumpp
bunx
Expand Down Expand Up @@ -29,6 +30,7 @@ Postcardware
postcompile
prefetch
preinstall
quickfix
socio
Solana
sslx
Expand Down
2 changes: 1 addition & 1 deletion .vscode/extensions.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// See https://go.microsoft.com/fwlink/?LinkId=827846
// for the documentation about the extensions.json format
"recommendations": [
"dbaeumer.vscode-eslint",
"biomejs.biome",
"streetsidesoftware.code-spell-checker",
"davidanson.vscode-markdownlint"
]
Expand Down
66 changes: 4 additions & 62 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,73 +1,15 @@
{
"typescript.tsdk": "node_modules/typescript/lib",
// Enable the ESlint flat config support
"eslint.experimental.useFlatConfig": true,
// Disable the default formatter, use eslint instead
// Disable the default formatter, use biome instead
"prettier.enable": false,
"editor.defaultFormatter": "biomejs.biome",
"editor.formatOnSave": false,
// Auto fix
"editor.codeActionsOnSave": {
"quickfix.biome": "explicit",
"source.fixAll.eslint": "explicit",
"source.organizeImports": "never"
"source.organizeImports.biome": "explicit"
},
// Silent the stylistic rules in you IDE, but still auto fix them
"eslint.rules.customizations": [
{
"rule": "style/*",
"severity": "off"
},
{
"rule": "format/*",
"severity": "off"
},
{
"rule": "*-indent",
"severity": "off"
},
{
"rule": "*-spacing",
"severity": "off"
},
{
"rule": "*-spaces",
"severity": "off"
},
{
"rule": "*-order",
"severity": "off"
},
{
"rule": "*-dangle",
"severity": "off"
},
{
"rule": "*-newline",
"severity": "off"
},
{
"rule": "*quotes",
"severity": "off"
},
{
"rule": "*semi",
"severity": "off"
}
],
// Enable eslint for all supported languages
"eslint.validate": [
"javascript",
"javascriptreact",
"typescript",
"typescriptreact",
"vue",
"stx",
"html",
"markdown",
"json",
"jsonc",
"yaml",
"toml"
],
"cSpell.ignorePaths": ["node_modules"],
"cSpell.dictionaries": ["custom-dictionary"],
"cSpell.diagnosticLevel": "Hint",
Expand Down

0 comments on commit 01ed0db

Please sign in to comment.