summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorikasoba <57828948+ikasoba@users.noreply.github.com>2023-12-18 10:52:23 +0900
committerGitHub <noreply@github.com>2023-12-18 10:52:23 +0900
commit24261f6eb3e1b0b164dccf44922ee81af315a912 (patch)
tree325fb5f08eafda08bab63ab940e20e37a6570466
parentfix lint error (#12692) (diff)
downloadmisskey-24261f6eb3e1b0b164dccf44922ee81af315a912.tar.gz
misskey-24261f6eb3e1b0b164dccf44922ee81af315a912.tar.bz2
misskey-24261f6eb3e1b0b164dccf44922ee81af315a912.zip
設定を付けた & 設定自体をフォーマット (#12693)
-rw-r--r--.vscode/settings.json24
1 files changed, 14 insertions, 10 deletions
diff --git a/.vscode/settings.json b/.vscode/settings.json
index 71fb02a59d..e2a82b1ffe 100644
--- a/.vscode/settings.json
+++ b/.vscode/settings.json
@@ -1,11 +1,15 @@
{
- "search.exclude": {
- "**/node_modules": true
- },
- "typescript.tsdk": "node_modules/typescript/lib",
- "files.associations": {
- "*.test.ts": "typescript"
- },
- "jest.jestCommandLine": "pnpm run jest",
- "jest.autoRun": "off"
-} \ No newline at end of file
+ "search.exclude": {
+ "**/node_modules": true
+ },
+ "typescript.tsdk": "node_modules/typescript/lib",
+ "files.associations": {
+ "*.test.ts": "typescript"
+ },
+ "jest.jestCommandLine": "pnpm run jest",
+ "jest.autoRun": "off",
+ "editor.codeActionsOnSave": {
+ "source.fixAll": "explicit"
+ },
+ "editor.formatOnSave": false
+}