aboutsummaryrefslogtreecommitdiffhomepage
path: root/site/blog/_posts/2015-07-01-Configuration-File.md
diff options
context:
space:
mode:
Diffstat (limited to 'site/blog/_posts/2015-07-01-Configuration-File.md')
-rw-r--r--site/blog/_posts/2015-07-01-Configuration-File.md27
1 files changed, 0 insertions, 27 deletions
diff --git a/site/blog/_posts/2015-07-01-Configuration-File.md b/site/blog/_posts/2015-07-01-Configuration-File.md
deleted file mode 100644
index 93b4fc86c1..0000000000
--- a/site/blog/_posts/2015-07-01-Configuration-File.md
+++ /dev/null
@@ -1,27 +0,0 @@
----
-layout: posts
-title: Sharing your rc files
----
-
-You can customize the options Bazel runs with in your `~/.bazelrc`, but
-that doesn't scale when you share your workspace with others.
-
-For instance, you could de-activate [Error Prone](http://errorprone.info)'s
-[DepAnn](http://errorprone.info/bugpattern/DepAnn) checks by adding the
-`--javacopt="-Xep:DepAnn:OFF"` flag in your `~/.bazelrc`. However, `~/.bazelrc`
-is not really convenient as it a user file, not shared with
-your team. You could instead add a rc file at `tools/bazel.rc` in your workspace
-with the content of the bazelrc file you want to share with your team:
-
-```
-build --javacopt="-Xep:DepAnn:OFF"
-```
-
-This file, called a master rc file, is parsed before the user rc file. There is
-three paths to master rc files that are read in the following order:
-
- 1. `tools/bazel.rc` (depot master rc file),
- 2. `/path/to/bazel.bazelrc` (alongside bazel rc file), and
- 3. `/etc/bazel.bazelrc` (system-wide bazel rc file).
-
-The complete documentation on rc file is [here](http://bazel.build/docs/bazel-user-manual.html#bazelrc).