Created
June 21, 2023 23:22
-
-
Save tracker1/8840a61470063705d37aaf00019c9d16 to your computer and use it in GitHub Desktop.
Synchronet VS Code Settings
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"editor.rulers": [76, 80], | |
"editor.formatOnSave": true, | |
"editor.tabSize": 2, | |
"files.associations": { | |
"*.ssjs": "javascript", | |
"*.msg": "plaintext", | |
"*.ans": "plaintext", | |
"*.asc": "plaintext", | |
"*.rip": "plaintext", | |
"*.nfo": "plaintext", | |
"*.tic": "plaintext", | |
"appsettings.json": "jsonc", | |
"appsettings.*.json": "jsonc" | |
}, | |
"files.eol": "\n", | |
"[javascript]": { | |
"editor.defaultFormatter": "vscode.typescript-language-features", | |
"files.encoding": "utf8", | |
}, | |
"[plaintext]": { | |
"files.encoding": "cp437", | |
"files.eol": "\r\n", | |
"editor.renderControlCharacters": true | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment