Skip to content

Commit 827d06b

Browse files
committed
feat: add support
1 parent b163e28 commit 827d06b

File tree

1 file changed

+43
-0
lines changed

1 file changed

+43
-0
lines changed

.github/standardizer.yaml

+43
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
baseConfig:
2+
searchDirectory: "./"
3+
ignoreCase: false
4+
5+
directoryNaming:
6+
allowHyphens: true
7+
allowUnderscores: false
8+
mustBeLowercase: true
9+
10+
fileNaming:
11+
allowHyphens: true
12+
allowUnderscores: true
13+
mustBeLowercase: true
14+
15+
ignoreFormats:
16+
- "\\.log$"
17+
- "\\.env$"
18+
- "README\\.md$"
19+
- "_test\\.go$"
20+
- "\\.md$"
21+
- LICENSE
22+
23+
ignoreDirectories:
24+
- "vendor"
25+
- ".git"
26+
- "node_modules"
27+
- "logs"
28+
- "CHANGELOG"
29+
- "components"
30+
- "_output"
31+
- "tools/openim-web"
32+
- "CHANGELOG"
33+
- "examples/Test_directory"
34+
35+
fileTypeSpecificNaming:
36+
".yaml":
37+
allowHyphens: true
38+
allowUnderscores: false
39+
mustBeLowercase: true
40+
".go":
41+
allowHyphens: false
42+
allowUnderscores: true
43+
mustBeLowercase: true

0 commit comments

Comments
 (0)