UebelAndre | 52c87aa | 2021-06-01 14:18:58 -0700 | [diff] [blame] | 1 | # `.bazelrc` is a Bazel configuration file. |
| 2 | # https://docs.bazel.build/versions/master/best-practices.html#using-the-bazelrc-file |
| 3 | |
| 4 | # Enable rustfmt for all targets in the workspace |
| 5 | build:rustfmt --aspects=//rust:defs.bzl%rustfmt_aspect |
| 6 | build:rustfmt --output_groups=+rustfmt_checks |
UebelAndre | ed64716 | 2021-07-10 09:22:07 -0700 | [diff] [blame] | 7 | |
| 8 | # Enable clippy for all targets in the workspace |
| 9 | build:clippy --aspects=//rust:defs.bzl%rust_clippy_aspect |
| 10 | build:clippy --output_groups=+clippy_checks |
OJ Kwon | 8ae83f0 | 2021-08-20 14:44:39 -0700 | [diff] [blame] | 11 | |
| 12 | # https://bazel.googlesource.com/bazel/+/master/site/docs/windows.md#enable-symlink-support |
| 13 | startup --windows_enable_symlinks |