forked from JetBrains/hirschgarten
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitattributes
15 lines (15 loc) · 919 Bytes
/
.gitattributes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# A custom merge driver for the Bazel lockfile.
# https://bazel.build/external/lockfile#automatic-resolution
MODULE.bazel.lock merge=bazel-lockfile-merge
# exclude test .bzl files used in starlark tests,
# intellij testing platform uses enhanced syntax in files in tests (tags with information about autocompletion)
# https://github.com/aspect-build/rules_lint/blob/main/docs/formatting.md#ignoring-files-explicitly
plugin-bazel/src/test/testData/**/*.bzl rules-lint-ignored
# exclude all generated sources
**/gen/** rules-lint-ignored
# exclude all TC config files in .teamcity
.teamcity/** rules-lint-ignored
plugin-bazel/src/main/kotlin/org/jetbrains/bazel/languages/bazelrc/lexer/_BazelrcLexer.java rules-lint-ignored
plugin-bazel/src/main/kotlin/org/jetbrains/bazel/languages/starlark/lexer/_StarlarkLexer.java rules-lint-ignored
# exclude test projects for e2e tests
server/e2e/test-projects/** rules-lint-ignored