Skip to content

Commit

Permalink
docs: add commit input validation in vscode settings
Browse files Browse the repository at this point in the history
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
  • Loading branch information
naaajii authored and devversion committed Feb 3, 2025
1 parent f15a939 commit 6a48ffd
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 @@ -24,5 +24,8 @@
"editor.rulers": [100],
"bazel.buildifierExecutable": "node_modules/.bin/buildifier",
"bazel.buildifierFixOnFormat": true,
"bazel.executable": "node_modules/.bin/bazel"
"bazel.executable": "node_modules/.bin/bazel",
"git.inputValidation": true,
"git.inputValidationSubjectLength": 100,
"git.inputValidationLength": 100
}

0 comments on commit 6a48ffd

Please sign in to comment.