mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-09 16:13:31 +01:00
26 lines
843 B
JSON
26 lines
843 B
JSON
{
|
|
"eslint.validate": ["javascript", "javascriptreact", "typescript", "typescriptreact"],
|
|
"eslint.useESLintClass": true,
|
|
"eslint.experimental.useFlatConfig": true,
|
|
"eslint.workingDirectories": [{ "mode": "auto" }],
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode",
|
|
"editor.formatOnSave": true,
|
|
"editor.codeActionsOnSave": {
|
|
"source.organizeImports": false,
|
|
"source.fixAll.eslint": true,
|
|
"source.fixAll": true
|
|
},
|
|
"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"
|
|
}
|