You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
543 B
10 lines
543 B
[alias]
|
|
# Alias to check the formatting since the last commit and show the issues
|
|
# that are found. No files will be changed. Only lines changed since the
|
|
# last commit are considered (and only for files that should be reformatted)
|
|
check-format = "! f() { tools/check_coding.sh --diff; }; f"
|
|
|
|
# Alias to check and fix formatting issues in files changed since the last
|
|
# commit. Only lines changed since the last commit are considered (and only
|
|
# for files that should be reformatted)
|
|
fix-format = "! f() { tools/check_coding.sh; }; f"
|