Skip to content

Commit 914fdfd

Browse files
committed
docs: add commit input validation in vscode settings
previously vscode used to warn about commit lines when they exceed certain characters but this was changed to be off by default, lets explicitly add this to vscode settings so it aligns with our contributing docment that no line should 100 characters
1 parent 04ae202 commit 914fdfd

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
@@ -24,5 +24,8 @@
2424
"editor.rulers": [100],
2525
"bazel.buildifierExecutable": "node_modules/.bin/buildifier",
2626
"bazel.buildifierFixOnFormat": true,
27-
"bazel.executable": "node_modules/.bin/bazel"
27+
"bazel.executable": "node_modules/.bin/bazel",
28+
"git.inputValidation": true,
29+
"git.inputValidationSubjectLength": 100,
30+
"git.inputValidationLength": 100
2831
}

0 commit comments

Comments
 (0)