forked from sfdx-isv/travel-expenses
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.forceignore
39 lines (34 loc) · 1.16 KB
/
.forceignore
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
################################################################################
# Exclude certain files and directories from source push, pull, and convert.
#
# The .forceignore file excludes files when running force:source:push,
# force:source:pull, and force:source:status. For source:status, remote changes
# are checked against entries in the .forceignore file.
#
# Syntax for .forceignore is similar to .gitignore (see examples below)
#
# Specify a relative path to a directory from the project root
# helloWorld/main/default/classes
#
# Specify a wildcard directory - any directory named “classes” is excluded
# **classes
#
# Specify file extensions
# **.cls
# **.pdf
#
# Specify a specific file
# helloWorld/main/default/HelloWorld.cls
################################################################################
# Ignore the following directories (relative to the project root).
sfdx-source/my_ns_prefix/test/javascript
sfdx-source/my_ns_prefix/test/selenium
# Ignore any package.xml files
package.xml
# Ignore any profile metadata
**profile
**profiles
# Ignored due to Winter '19 source push bug.
AppSwitcher.appMenu
# Ignore all .md files (like README.md)
**.md