mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-09 08:03:30 +01:00
23 lines
727 B
JSON
23 lines
727 B
JSON
{
|
|
"eslint.validate": ["javascript", "javascriptreact", "typescript", "typescriptreact"],
|
|
"eslint.experimental.useFlatConfig": true,
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode",
|
|
"editor.formatOnSave": true,
|
|
"editor.codeActionsOnSave": {
|
|
"source.fixAll": true,
|
|
"source.organizeImports": false
|
|
},
|
|
"editor.trimAutoWhitespace": false,
|
|
"files.associations": {
|
|
"*.mdx": "markdown"
|
|
},
|
|
"files.insertFinalNewline": true,
|
|
"files.eol": "\n",
|
|
"npm.packageManager": "yarn",
|
|
"typescript.tsdk": "node_modules/typescript/lib",
|
|
"deno.enablePaths": ["./packages/create-discord-bot/template/Deno"],
|
|
"deno.lint": true,
|
|
"deno.unstable": false,
|
|
"deno.config": "./packages/create-discord-bot/template/Deno/deno.jsonc"
|
|
}
|