-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.copado_exclude_autoresolve
More file actions
28 lines (26 loc) · 1.2 KB
/
.copado_exclude_autoresolve
File metadata and controls
28 lines (26 loc) · 1.2 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
# This is a sample .copado_exclude_autoresolve file
# Lines starting with '#' are comments and are ignored by Copado
# Use '**' to match any character across directory levels
# Use '*' to match any character within a directory level
# Use specific directory names and file patterns to match certain files
# Exclude all Apex class files from auto-resolve
**/classes/*.cls
# Exclude all Apex trigger files from auto-resolve
**/triggers/**
# Exclude all Visualforce page files from auto-resolve
**/pages/**
# Exclude all Layouts files from auto-resolve
**/layouts/**
# Exclude all Lightning component bundle directories from auto-resolve
**/aura/**
# Exclude all Lightning web component bundle directories from auto-resolve
**/lwc/**
# Next commented examples are other options that can fit for specific requirements of the customer/partner
# Exclude all files in a specific directory (e.g., a directory named 'workflows')
# workflows/**
# Exclude all files in the 'classes' directory within any 'modules' directory
# modules/*/classes/**
# Exclude all metadata in an unlocked package with a specific name (e.g., 'mypackage')
# **/mypackage/**/*
# Exclude a specific metadata type (e.g., CustomObject)
# **/objects/Account.object