Skip to content

Commit

Permalink
Merge pull request #76 from AlexanderLanin/line-length
Browse files Browse the repository at this point in the history
Improve line length settings
  • Loading branch information
ltekieli authored Jan 8, 2025
2 parents b105293 + 6f6cd08 commit 8ec3246
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,20 @@
"files.trimTrailingWhitespace": true,
"editor.insertSpaces": true,
"editor.tabCompletion": "on",
"editor.wordWrap": "wordWrapColumn",
"editor.wrappingIndent": "same",
"editor.wordWrapColumn": 100,

// Default for any filetype
"editor.rulers": [
100
],

// Python Settings
"[python]": {
// In python using 80 characters per line is the standard.
"editor.rulers": [
79
],
},

// RST Settings
"[restructuredtext]": {
"editor.tabSize": 3,
Expand Down

0 comments on commit 8ec3246

Please sign in to comment.