diff options
| author | ikasoba <57828948+ikasoba@users.noreply.github.com> | 2023-12-18 10:52:23 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-12-18 10:52:23 +0900 |
| commit | 24261f6eb3e1b0b164dccf44922ee81af315a912 (patch) | |
| tree | 325fb5f08eafda08bab63ab940e20e37a6570466 /.vscode | |
| parent | fix lint error (#12692) (diff) | |
| download | misskey-24261f6eb3e1b0b164dccf44922ee81af315a912.tar.gz misskey-24261f6eb3e1b0b164dccf44922ee81af315a912.tar.bz2 misskey-24261f6eb3e1b0b164dccf44922ee81af315a912.zip | |
設定を付けた & 設定自体をフォーマット (#12693)
Diffstat (limited to '.vscode')
| -rw-r--r-- | .vscode/settings.json | 24 |
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 +} |