-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.filesignore.example
More file actions
69 lines (57 loc) · 1.11 KB
/
Copy path.filesignore.example
File metadata and controls
69 lines (57 loc) · 1.11 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
# .filesignore - Example file ignore patterns
# Similar to .gitignore syntax
#
# Lines starting with # are comments
# Blank lines are ignored
#
# Patterns:
# * matches any characters except /
# ? matches a single character except /
# ** matches zero or more directories
# / at start means pattern is relative to root
# / at end means pattern matches directories only
# ! negates a pattern (include files that were previously excluded)
# Ignore common build artifacts
*.o
*.class
*.pyc
__pycache__/
*.exe
*.dll
*.so
*.dylib
# Ignore dependencies
node_modules/
vendor/
.bundle/
# Ignore version control
.git/
.svn/
.hg/
# Ignore IDE files
.vscode/
.idea/
*.swp
*.swo
*~
# Ignore OS files
.DS_Store
Thumbs.db
desktop.ini
# Ignore logs
*.log
logs/
# Ignore temporary files
*.tmp
*.temp
.cache/
# Example: Ignore all .txt files in build directory and subdirectories
build/**/*.txt
# Example: But include important.txt even if it's a .txt file
!important.txt
# Example: Ignore config.json only at root level
/config.json
# Example: Ignore all hidden files
.*
# Example: But don't ignore .filesignore itself
!.filesignore