-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.unusedignore
More file actions
28 lines (21 loc) · 1.34 KB
/
.unusedignore
File metadata and controls
28 lines (21 loc) · 1.34 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
# Example Unused File Ignore
# Whitespaces and # Comments are ignored.
##################################################################################################
# To ignore a specific declaration in a file, or multiple declarations across one or more files, #
# use: REGEX_PATH_TO_FILE: REGEX_DECLARATION_NAME #
##################################################################################################
# e.g. This ignores declarations named `package` within the file `./Package.swift`.
"Package.swift": "package"
# e.g. This ignores declarations ending in `_Previews` within the directory `./Sources`.
\./Sources/.*: .*_Previews
##################################################################################################
# To ignore a whole file, directory, or set of files, #
# use: REGEX_PATH_TO_FILE_OR_DIRECTORY #
##################################################################################################
# e.g. This ignores the `.gitignore` file.
# (This is unneeded because non-Swift/xib/nib files are ignored, but you get the idea.)
".gitignore"
# e.g. This ignores the `Tests` directory.
Tests/.*
# e.g. This ignores all `.swift` files in the `.build` directory.
\.build/.*\.swift