Skip to content

Commit 963335e

Browse files
committed
排除 markdoc 目录和 .DS_Store 文件
- 在 checkstyle 配置中排除 markdoc 目录 - 在 .gitignore 中添加 .DS_Store 和 markdoc 排除规则
1 parent d48d614 commit 963335e

File tree

3 files changed

+6
-1
lines changed

3 files changed

+6
-1
lines changed

.DS_Store

-8 KB
Binary file not shown.

.gitignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,7 @@ temp/
3131
*TempTest.java
3232

3333
# markdoc
34-
markdoc/
34+
markdoc/
35+
36+
# macOS
37+
.DS_Store

config/checkstyle/checkstyle_suppressions.xml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,6 @@
3232
<suppress files="[/\\]temp[/\\]" checks="." />
3333
<suppress files="Temp.java*" checks="." />
3434
<suppress files="TempTest.java*" checks="." />
35+
<!-- Exclude markdoc directory -->
36+
<suppress files="[/\\]markdoc[/\\]" checks="." />
3537
</suppressions>

0 commit comments

Comments
 (0)