-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy path.aiignore
More file actions
71 lines (51 loc) · 1.08 KB
/
.aiignore
File metadata and controls
71 lines (51 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
# An .aiignore file follows the same syntax as a .gitignore file.
# .gitignore documentation: https://git-scm.com/docs/gitignore
## Same as .gitignore:
.gwt
.idea
.settings
build
catma_base
db
out
repo
target
temp
tmp
# Eclipse config files
.classpath
.project
# Eclipse scratch files
*.jpage
# MS Office temp files
~$$*.*
# Mac
.DS_Store
# Group/project signup-token transaction log
group_project_signup_token*.*
## Altered from .gitignore:
# ALL properties files ("real" ones that may contain secrets, as well as the template, which won't be useful to AI)
*.properties
## Additionally:
.github
.run
doc
testdocs
# Empty SQLite DB
catma.db
## Additionally, from sample at https://www.jetbrains.com/help/junie/aiignore.html with modifications:
# Ignore project files
*.iml
# Ignore compiled Java class files
*.class
# Ignore all .java files except the ones from the 'src/main' and 'src/test/java' folders
*.java
!src/main/**/*.java
!src/test/java/**/*.java
# Ignore test reports and test directories
test-results/
allure-results/
# Ignore logs and temporary files
logs/
*.log
*.tmp