mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-09 16:13:31 +01:00
17 lines
550 B
JSON
17 lines
550 B
JSON
{
|
|
"eslint.workingDirectories": [{ "pattern": "./apps/*" }, { "pattern": "./packages/*" }],
|
|
"eslint.validate": ["javascript", "javascriptreact", "astro", "typescript", "typescriptreact"],
|
|
"prettier.documentSelectors": ["**/*.astro"],
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode",
|
|
"editor.formatOnSave": true,
|
|
"editor.codeActionsOnSave": {
|
|
"source.fixAll": true,
|
|
"source.organizeImports": false
|
|
},
|
|
"files.associations": {
|
|
"*.mdx": "markdown"
|
|
},
|
|
"unocss.root": "./packages/ui",
|
|
"typescript.tsdk": "node_modules/typescript/lib"
|
|
}
|