Skip to content

Commit 6a48ffd

Browse files
naaajiidevversion
authored andcommitted
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 f15a939 commit 6a48ffd

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.vscode/settings.json

+4-1
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)