Skip to content

Instantly share code, notes, and snippets.

@tumugin
Last active June 13, 2017 21:28
Show Gist options
  • Save tumugin/fa9d870f11c7e9a7e15d5d401eccc380 to your computer and use it in GitHub Desktop.
Save tumugin/fa9d870f11c7e9a7e15d5d401eccc380 to your computer and use it in GitHub Desktop.
VSCode用設定
// 既定の設定を上書きするには、このファイル内に設定を挿入します
{
// Basic settings: turn linter(s) on
"ruby.lint": {
"reek": true,
"rubocop": true,
"ruby": true, //Runs ruby -wc
"fasterer": true,
"debride": true,
"ruby-lint": true
},
"editor.fontSize": 16,
"terminal.integrated.shell.windows": "C:\\WINDOWS\\Sysnative\\bash.exe",
"editor.renderWhitespace": "boundary",
"editor.tabSize": 2,
"editor.formatOnType": true,
"editor.cursorBlinking": "smooth",
"editor.renderLineHighlight": "all",
"files.trimTrailingWhitespace": true,
"files.insertFinalNewline": true,
"files.eol": "\n"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment