mirror of
https://github.com/openwrt/packages.git
synced 2026-04-15 10:51:55 +00:00
Enable trailing whitespace trimming, insert final newline, and force LF. Configure git input validation to warn if subject exceeds 60 characters or if body lines exceed 75 characters. Signed-off-by: Josef Schlehofer <pepe.schlehofer@gmail.com>
11 lines
292 B
JSON
11 lines
292 B
JSON
{
|
|
"git.alwaysSignOff": true,
|
|
"files.trimTrailingWhitespace": true,
|
|
"files.insertFinalNewline": true,
|
|
"files.trimFinalNewlines": true,
|
|
"files.eol": "\n",
|
|
"git.inputValidation": true,
|
|
"git.inputValidationSubjectLength": 60,
|
|
"git.inputValidationLineLength": 75
|
|
}
|