forked from JetBrains/hirschgarten
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitattributes
More file actions
23 lines (23 loc) · 1.34 KB
/
.gitattributes
File metadata and controls
23 lines (23 loc) · 1.34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# 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
**/entities/impl/** rules-lint-ignored
# exclude all TC config files in .teamcity
.teamcity/** rules-lint-ignored
# exclude pnpm lock file, otherwise it will trigger lock regeneration after each format
pnpm-lock.yaml 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
plugin-bazel/src/main/kotlin/org/jetbrains/bazel/languages/bazelquery/lexer/_BazelQueryLexer.java rules-lint-ignored
plugin-bazel/src/main/jps-resources/META-INF/plugin.xml rules-lint-ignored
# exclude test projects for e2e tests
server/e2e/test-projects/** rules-lint-ignored
ktlint-baseline.xml rules-lint-ignored
# exclude lexer generated files
**/_*.java rules-lint-ignored