forked from sfdx-isv/sfdx-falcon-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.forceignore
29 lines (27 loc) · 1 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
################################################################################
# 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 all .md files (like README.md)
**.md