Skip to content

Commit

Permalink
(maint) Add visual ruler for line length
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
glennsarti committed Jun 11, 2018
1 parent 790e6e2 commit d661b28
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,8 @@
},

// Lock the TypeScript SDK path to the version we use
"typescript.tsdk": "./node_modules/typescript/lib"
"typescript.tsdk": "./node_modules/typescript/lib",

// Add a visual ruler for the typescript linting line length
"editor.rulers": [120]
}

0 comments on commit d661b28

Please sign in to comment.