Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 74df395

Browse files
committedMay 29, 2025·
Added a config for repomix.
1 parent 773a51c commit 74df395

File tree

4 files changed

+47
-3
lines changed

4 files changed

+47
-3
lines changed
 

‎.gitignore

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,5 @@ launchSettings.json
2525
/logs
2626
/src/.idea
2727
/src/qodana.yaml
28-
/repomix-output.txt
29-
/src/repomix-output.txt
3028
/gitlog.txt
31-
/repomix-output.xml
29+
/repomix-output.md

‎.repomix/bundles.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"bundles": {}
3+
}

‎.repomixignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# Add patterns to ignore here, one per line
2+
# Example:
3+
# *.log
4+
# tmp/
5+
6+
*.css*

‎repomix.config.json

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
{
2+
"$schema": "https://repomix.com/schemas/latest/schema.json",
3+
"input": {
4+
"maxFileSize": 52428800
5+
},
6+
"output": {
7+
"filePath": "repomix-output.md",
8+
"style": "markdown",
9+
"parsableStyle": false,
10+
"fileSummary": true,
11+
"directoryStructure": true,
12+
"files": true,
13+
"removeComments": false,
14+
"removeEmptyLines": false,
15+
"compress": false,
16+
"topFilesLength": 5,
17+
"showLineNumbers": false,
18+
"copyToClipboard": false,
19+
"git": {
20+
"sortByChanges": true,
21+
"sortByChangesMaxCommits": 100,
22+
"includeDiffs": false
23+
}
24+
},
25+
"include": [],
26+
"ignore": {
27+
"useGitignore": true,
28+
"useDefaultPatterns": true,
29+
"customPatterns": []
30+
},
31+
"security": {
32+
"enableSecurityCheck": true
33+
},
34+
"tokenCount": {
35+
"encoding": "o200k_base"
36+
}
37+
}

0 commit comments

Comments
 (0)
Please sign in to comment.