-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
mkrause
committed
Oct 11, 2024
1 parent
05284f0
commit b05f73e
Showing
4 changed files
with
44 additions
and
27 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,22 @@ | ||
{ | ||
// https://github.com/Microsoft/vscode-css-languageservice/blob/main/docs/customData.md | ||
// https://stackoverflow.com/questions/42520229/vs-code-and-intellisense-for-css-grid-and-css-modules | ||
"css.customData": [".vscode/custom.css-data.json"] | ||
"css.customData": [".vscode/custom.css-data.json"], | ||
|
||
// Editor (code) | ||
"editor.insertSpaces": true, // Insert spaces when pressing Tab | ||
"editor.tabSize": 2, | ||
"editor.detectIndentation": true, // Detect tabSize/insertSpaces automatically when opening a file | ||
"editor.renderWhitespace": "selection", // Render whitespace as visible when selecting text | ||
"editor.wordWrap": "wordWrapColumn", | ||
"editor.wordWrapColumn": 120, | ||
"editor.rulers": [120], | ||
"editor.formatOnSave": false, // Disable auto-format | ||
"editor.formatOnPaste": false, | ||
"editor.comments.ignoreEmptyLines": false, | ||
"files.insertFinalNewline": true, // Insert a newline at the end of the file when saving | ||
"files.trimTrailingWhitespace": false, // Do not trim trailing whitespace | ||
"editor.trimAutoWhitespace": false, | ||
"files.eol": "\n", | ||
"javascript.preferences.quoteStyle": "single", | ||
} |
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
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
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