discord.js/.vscode/settings.json

19 lines
593 B
JSON
Raw Normal View History

2022-01-08 05:18:25 +13:00
{
"eslint.workingDirectories": [{ "pattern": "./apps/*" }, { "pattern": "./packages/*" }],
2022-10-07 10:53:35 +13:00
"eslint.validate": ["javascript", "javascriptreact", "astro", "typescript", "typescriptreact"],
2022-01-12 00:30:08 +13:00
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.fixAll": true,
"source.organizeImports": false
2022-06-09 07:45:16 +12:00
},
2022-10-11 14:34:29 +13:00
"editor.trimAutoWhitespace": false,
2022-10-07 10:53:35 +13:00
"files.associations": {
"*.mdx": "markdown"
},
2022-10-11 14:34:29 +13:00
"files.insertFinalNewline": true,
"files.eol": "\n",
"npm.packageManager": "yarn",
"typescript.tsdk": "node_modules/typescript/lib"
2022-01-08 05:18:25 +13:00
}