mirror of https://github.com/databricks/cli.git
14 lines
510 B
Go
14 lines
510 B
Go
package config
|
|
|
|
type Sync struct {
|
|
// Include contains a list of globs evaluated relative to the bundle root path
|
|
// to explicitly include files that were excluded by the user's gitignore.
|
|
Include []string `json:"include,omitempty"`
|
|
|
|
// Exclude contains a list of globs evaluated relative to the bundle root path
|
|
// to explicitly exclude files that were included by
|
|
// 1) the default that observes the user's gitignore, or
|
|
// 2) the `Include` field above.
|
|
Exclude []string `json:"exclude,omitempty"`
|
|
}
|