Last active
June 13, 2017 21:28
-
-
Save tumugin/fa9d870f11c7e9a7e15d5d401eccc380 to your computer and use it in GitHub Desktop.
VSCode用設定
This file contains hidden or 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
// 既定の設定を上書きするには、このファイル内に設定を挿入します | |
{ | |
// 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