joelparkerhenderson / architecture-decision-record

Architecture decision record (ADR) examples for software planning, IT leadership, and template documentation
Other
11.59k stars 2.4k forks source link

doc(:kr:): titles of decision-record-template-for-business-case #69

Closed flavono123 closed 8 months ago

flavono123 commented 8 months ago
joelparkerhenderson commented 8 months ago

Thanks! I'll merge now.

Next I'll look for options for dealing with trailing spaces and leading/trailing blank lines, such as with a git commit hook, or sed script, etc. Do you have a solution that you like?

flavono123 commented 8 months ago

by my vscode settings since i use that editor:

{
...
  // force EOF newline, trim trailing whitespace
  "files.insertFinalNewline": true,
  "files.trimTrailingWhitespace": true,
...
}

but we cannot enforce the "editor" for this works i think. i guess there are more general solutions, such as git hook, as you said.

flavono123 commented 8 months ago

https://git-scm.com/docs/git-stripspace oh!