blob: e323966381d9ef1e34fbb9cea4a417b19a593fe1 [file] [log] [blame]
George Burgess IVecd3d272022-08-30 17:29:35 -07001# These are on by default, but needed so we can provide options below.
2[Hook Overrides]
3black_check: true
4blank_line_check: true
5cros_license_check: true
6exec_files_check: true
7gofmt_check: true
8handle_eintr_close_check: true
9keyword_check: true
10long_line_check: true
11stray_whitespace_check: true
12tab_check: true
13tabbed_indent_required_check: true
14
15# Disable these, since the only Rust code here should be in vendor/
16cargo_clippy_check: false
17check_rustfmt: false
18
19[Hook Overrides Options]
20black_check: --exclude_regex=vendor/
21blank_line_check: --exclude_regex=vendor/
22cros_license_check: --exclude_regex=vendor/
23gofmt_check: --exclude_regex=vendor/
24handle_eintr_close_check: --exclude_regex=vendor/
25keyword_check: --exclude_regex=vendor/
26long_line_check: --exclude_regex=vendor/
27stray_whitespace_check: --exclude_regex=vendor/
28tab_check: --exclude_regex=vendor/
29tabbed_indent_required_check: --exclude_regex=vendor/