mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-09 16:13:31 +01:00
19 lines
584 B
JSON
19 lines
584 B
JSON
{
|
|
"eslint.workingDirectories": [{ "pattern": "./apps/*" }, { "pattern": "./packages/*" }],
|
|
"eslint.validate": ["javascript", "javascriptreact", "typescript", "typescriptreact"],
|
|
"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"
|
|
}
|