Skip to content

Commit

Permalink
Merge pull request #21 from yasulab/main
Browse files Browse the repository at this point in the history
インデントとハイライトのデフォルト設定を追加 (理由もコメントで追記)
  • Loading branch information
yasulab authored Oct 15, 2024
2 parents c99e68f + 00445b2 commit 1059418
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,13 @@
//"ruby.lint": { "rubocop": true },
//"ruby.intellisense": "rubyLocate",
"editor.tabSize": 2,
"editor.formatOnSave": false,
"editor.formatOnSave": false, // Disable onSave to show diff edited by learners only
"editor.formatOnType": false, // Disable onType for the same reason above
"editor.insertSpaces": true, // Use spaces, not tabs, to avoid errors for learners
"editor.renderWhitespace": "none",
"[ruby]": {
"editor.defaultFormatter": "castwide.solargraph"
"editor.defaultFormatter": "castwide.solargraph",
"editor.semanticHighlighting.enabled": true, // Enable semantic highlighting
},
"files.associations": { "*.erb": "erb" },
"emmet.includeLanguages": { "erb": "html" },
Expand Down

0 comments on commit 1059418

Please sign in to comment.