Merge pull request #1687 from NoahGorny/enforce-pre-commit-only-newlines
Enforce pre-commit newline fixespull/1695/head
commit
af6af2d932
|
|
@ -5,6 +5,7 @@ indent_style = space
|
||||||
indent_size = 2
|
indent_size = 2
|
||||||
end_of_line = lf
|
end_of_line = lf
|
||||||
charset = utf-8
|
charset = utf-8
|
||||||
|
|
||||||
trim_trailing_whitespace = true
|
trim_trailing_whitespace = true
|
||||||
insert_final_newline = true
|
insert_final_newline = true
|
||||||
|
|
||||||
|
|
@ -13,3 +14,17 @@ trim_trailing_whitespace = false
|
||||||
|
|
||||||
[.git*]
|
[.git*]
|
||||||
indent_style = tab
|
indent_style = tab
|
||||||
|
|
||||||
|
[*.*sh]
|
||||||
|
indent_style = tab
|
||||||
|
indent_size = 4
|
||||||
|
|
||||||
|
shell_variant = bash
|
||||||
|
binary_next_line = true # like -bn
|
||||||
|
switch_case_indent = true # like -ci
|
||||||
|
space_redirects = true # like -sr
|
||||||
|
keep_padding = true # like -kp
|
||||||
|
end_of_line = lf
|
||||||
|
charset = utf-8
|
||||||
|
trim_trailing_whitespace = true
|
||||||
|
insert_final_newline = true
|
||||||
|
|
|
||||||
|
|
@ -13,7 +13,7 @@ repos:
|
||||||
- id: mixed-line-ending
|
- id: mixed-line-ending
|
||||||
- id: check-added-large-files
|
- id: check-added-large-files
|
||||||
- repo: https://github.com/jumanjihouse/pre-commit-hooks
|
- repo: https://github.com/jumanjihouse/pre-commit-hooks
|
||||||
rev: 1.11.0
|
rev: 2.1.4
|
||||||
hooks:
|
hooks:
|
||||||
- id: git-check # Configure in .gitattributes
|
- id: git-check # Configure in .gitattributes
|
||||||
- id: shellcheck
|
- id: shellcheck
|
||||||
|
|
|
||||||
|
|
@ -24,7 +24,7 @@ jobs:
|
||||||
include:
|
include:
|
||||||
- language: go
|
- language: go
|
||||||
go: "1.14"
|
go: "1.14"
|
||||||
name: Ubuntu 18.04
|
name: pre-commit lint
|
||||||
dist: bionic
|
dist: bionic
|
||||||
sudo: required
|
sudo: required
|
||||||
before_script:
|
before_script:
|
||||||
|
|
|
||||||
|
|
@ -8,4 +8,3 @@ fi
|
||||||
alias please=fuck
|
alias please=fuck
|
||||||
alias plz=please
|
alias plz=please
|
||||||
alias fucking=sudo
|
alias fucking=sudo
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -6,4 +6,3 @@ alias node-dev='export NODE_ENV=development'
|
||||||
|
|
||||||
# alias to setup nodejs production environment
|
# alias to setup nodejs production environment
|
||||||
alias node-prod='export NODE_ENV=production'
|
alias node-prod='export NODE_ENV=production'
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -7,4 +7,3 @@ alias puplint="puppet-lint *.pp"
|
||||||
alias pupagt="puppet agent -t"
|
alias pupagt="puppet agent -t"
|
||||||
alias pupagtd="puppet agent -t --debug"
|
alias pupagtd="puppet agent -t --debug"
|
||||||
alias pupapp="puppet apply"
|
alias pupapp="puppet apply"
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -8,4 +8,3 @@ alias tfv='terraform validate'
|
||||||
alias tfp='terraform plan'
|
alias tfp='terraform plan'
|
||||||
alias tfa='terraform apply'
|
alias tfa='terraform apply'
|
||||||
alias tfd='terraform destory'
|
alias tfd='terraform destory'
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -13,4 +13,3 @@ alias tgva='terragrunt validate-all'
|
||||||
alias tgpa='terragrunt plan-all'
|
alias tgpa='terragrunt plan-all'
|
||||||
alias tgaa='terragrunt apply-all'
|
alias tgaa='terragrunt apply-all'
|
||||||
alias tgda='terragrunt destroy-all'
|
alias tgda='terragrunt destroy-all'
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -69,4 +69,3 @@ else
|
||||||
fi
|
fi
|
||||||
|
|
||||||
complete -F _python_django_completion -o default $pythons
|
complete -F _python_django_completion -o default $pythons
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -57,4 +57,3 @@ _homesick_complete()
|
||||||
}
|
}
|
||||||
|
|
||||||
complete -o bashdefault -o default -F _homesick_complete homesick
|
complete -o bashdefault -o default -F _homesick_complete homesick
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -28,4 +28,3 @@ _complete_invoke() {
|
||||||
# * -o default: when function generates no results, use filenames.
|
# * -o default: when function generates no results, use filenames.
|
||||||
# * positional args: program names to complete for.
|
# * positional args: program names to complete for.
|
||||||
complete -F _complete_invoke -o default invoke inv
|
complete -F _complete_invoke -o default invoke inv
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -3,4 +3,3 @@
|
||||||
if _command_exists kind; then
|
if _command_exists kind; then
|
||||||
eval "$(kind completion bash)"
|
eval "$(kind completion bash)"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -13,4 +13,3 @@ if command -v laravel > /dev/null; then
|
||||||
|
|
||||||
complete -F __laravel_completion laravel
|
complete -F __laravel_completion laravel
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,3 @@
|
||||||
|
|
||||||
if _command_exists ng; then
|
if _command_exists ng; then
|
||||||
# No longer supported, please see https://github.com/angular/angular-cli/issues/11043
|
# No longer supported, please see https://github.com/angular/angular-cli/issues/11043
|
||||||
# Fix courtesy of https://stackoverflow.com/questions/50194674/ng-completion-no-longer-exists
|
# Fix courtesy of https://stackoverflow.com/questions/50194674/ng-completion-no-longer-exists
|
||||||
|
|
|
||||||
|
|
@ -161,4 +161,3 @@ _packer_completion ()
|
||||||
}
|
}
|
||||||
|
|
||||||
complete -o nospace -F _packer_completion packer
|
complete -o nospace -F _packer_completion packer
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -8,4 +8,3 @@
|
||||||
if command -v pip3 >/dev/null; then
|
if command -v pip3 >/dev/null; then
|
||||||
eval "$(pip3 completion --bash)"
|
eval "$(pip3 completion --bash)"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -44,4 +44,3 @@ _pj() {
|
||||||
|
|
||||||
complete -F _pj -o nospace pj
|
complete -F _pj -o nospace pj
|
||||||
complete -F _pj -o nospace pjo
|
complete -F _pj -o nospace pjo
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -326,4 +326,3 @@ _saltcp(){
|
||||||
}
|
}
|
||||||
|
|
||||||
complete -F _saltcp salt-cp
|
complete -F _saltcp salt-cp
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -28,4 +28,3 @@ __kitchen_options () {
|
||||||
esac
|
esac
|
||||||
}
|
}
|
||||||
complete -F __kitchen_options kitchen
|
complete -F __kitchen_options kitchen
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -185,4 +185,3 @@ _tmux() {
|
||||||
complete -F _tmux tmux
|
complete -F _tmux tmux
|
||||||
|
|
||||||
# END tmux completion
|
# END tmux completion
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -13,4 +13,3 @@ if command -v wpscan > /dev/null; then
|
||||||
|
|
||||||
complete -F __wpscan_completion wpscan
|
complete -F __wpscan_completion wpscan
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -21,4 +21,3 @@ explain () {
|
||||||
echo "explain 'cmd -o | ...' one quoted command to explain it."
|
echo "explain 'cmd -o | ...' one quoted command to explain it."
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -273,5 +273,3 @@ function gitignore-reload() {
|
||||||
echo >&2 "Files readded. Commit your new changes now."
|
echo >&2 "Files readded. Commit your new changes now."
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -19,4 +19,3 @@ function gw() {
|
||||||
# Call gradle
|
# Call gradle
|
||||||
"${result}" $*
|
"${result}" $*
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -84,4 +84,3 @@ function postgres_serverlog {
|
||||||
# tail -500 $PGDATA/pg_log/`ls -Art $PGDATA/pg_log | tail -n 1` | less
|
# tail -500 $PGDATA/pg_log/`ls -Art $PGDATA/pg_log | tail -n 1` | less
|
||||||
# }
|
# }
|
||||||
#
|
#
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -6,4 +6,3 @@ about-plugin 'Load Software Development Kit Manager'
|
||||||
export SDKMAN_DIR=${SDKMAN_DIR:-$HOME/.sdkman}
|
export SDKMAN_DIR=${SDKMAN_DIR:-$HOME/.sdkman}
|
||||||
|
|
||||||
[[ -s "${SDKMAN_DIR}/bin/sdkman-init.sh" ]] && source "${SDKMAN_DIR}/bin/sdkman-init.sh"
|
[[ -s "${SDKMAN_DIR}/bin/sdkman-init.sh" ]] && source "${SDKMAN_DIR}/bin/sdkman-init.sh"
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -225,4 +225,3 @@ function __powerline_prompt_command {
|
||||||
LEFT_PROMPT \
|
LEFT_PROMPT \
|
||||||
SEGMENTS_AT_LEFT
|
SEGMENTS_AT_LEFT
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,2 +1 @@
|
||||||
liquidprompt
|
liquidprompt
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -26,4 +26,3 @@ Here it is in action:
|
||||||
## Usage Scenario
|
## Usage Scenario
|
||||||
|
|
||||||
This theme is especially useful when connecting to many different machines and switching between them often. Yes, the hostname *is* present in the prompt. But I argue that it's a lot faster to get a "feel" of what machine you are currently on because of the custom colors on that machine's prompt than by reading the hostname.
|
This theme is especially useful when connecting to many different machines and switching between them often. Yes, the hostname *is* present in the prompt. But I argue that it's a lot faster to get a "feel" of what machine you are currently on because of the custom colors on that machine's prompt than by reading the hostname.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -280,4 +280,3 @@ function __powerline_prompt_command {
|
||||||
LEFT_PROMPT \
|
LEFT_PROMPT \
|
||||||
SEGMENTS_AT_LEFT
|
SEGMENTS_AT_LEFT
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -182,4 +182,3 @@ function powerline_prompt_command() {
|
||||||
}
|
}
|
||||||
|
|
||||||
PROMPT_COMMAND=powerline_prompt_command
|
PROMPT_COMMAND=powerline_prompt_command
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue