diff --git a/home/.config/yamllint/config b/home/.config/yamllint/config index 71389b7..ce606ed 100644 --- a/home/.config/yamllint/config +++ b/home/.config/yamllint/config @@ -1,5 +1,4 @@ --- - extends: default rules: @@ -18,21 +17,25 @@ rules: empty-lines: enable empty-values: enable hyphens: enable - indentation: enable + indentation: + spaces: consistent + indent-sequences: consistent key-duplicates: enable key-ordering: disable - line-length: enable + line-length: + max: 100 + allow-non-breakable-words: true + allow-non-breakable-inline-mappings: true new-line-at-end-of-file: enable new-lines: enable octal-values: enable quoted-strings: quote-type: double - required: only-when-needed + required: false allow-quoted-quotes: true trailing-spaces: enable truthy: allowed-values: - - 'true' - - 'false' - - 'on' - - 'off' + - "true" + - "false" +# vim: ft=yaml diff --git a/home/.gitconfig b/home/.gitconfig index 52e4b23..e1048bc 100644 --- a/home/.gitconfig +++ b/home/.gitconfig @@ -22,3 +22,6 @@ [core] hooksPath = ~/.alex-environ/private/home/git_hooks + +[alias] + adog = log --all --decorate --oneline --graph