Skip to content

Commit 08a6e64

Browse files
committed
chore: add godot config to exclude experiments directory
Configure godot to ignore experiments directory files
1 parent 5433ea8 commit 08a6e64

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

.godot.yaml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# godot configuration
2+
# Which comments to check:
3+
# declarations - for top level declaration comments (default);
4+
# toplevel - for top level comments;
5+
# noinline - for all except inline comments;
6+
# all - for all comments.
7+
scope: declarations
8+
9+
# List of regexps for excluding particular comment lines from check.
10+
exclude:
11+
# Exclude experiments directory
12+
- "llama3/experiments/.*"
13+
- "experiments/.*"
14+
15+
# Check periods at the end of sentences.
16+
period: true
17+
18+
# Check that first letter of each sentence is capital.
19+
capital: false

0 commit comments

Comments
 (0)