Skip to content

Commit d661b28

Browse files
committed
(maint) Add visual ruler for line length
Previously it was a little difficult to know when your editing would exceed the 120 line length limit. This commit modifies the project settings to add a simple visual ruler at the 120 char limit.
1 parent 790e6e2 commit d661b28

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.vscode/settings.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,8 @@
1212
},
1313

1414
// Lock the TypeScript SDK path to the version we use
15-
"typescript.tsdk": "./node_modules/typescript/lib"
15+
"typescript.tsdk": "./node_modules/typescript/lib",
16+
17+
// Add a visual ruler for the typescript linting line length
18+
"editor.rulers": [120]
1619
}

0 commit comments

Comments
 (0)