Skip to content

Commit cb1269c

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. [skip ci]
1 parent 790e6e2 commit cb1269c

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.vscode/settings.json

Lines changed: 5 additions & 2 deletions
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"
16-
}
15+
"typescript.tsdk": "./node_modules/typescript/lib",
16+
17+
// Add a visual ruler for the typescript linting line length
18+
"editor.rulers": [120]
19+
}

0 commit comments

Comments
 (0)