class GitIgnoreStrategy
Language | Type name |
---|---|
.NET | Amazon.CDK.GitIgnoreStrategy |
Java | software.amazon.awscdk.core.GitIgnoreStrategy |
Python | aws_cdk.core.GitIgnoreStrategy |
TypeScript (source) | @aws-cdk/core » GitIgnoreStrategy |
Extends
Ignore
Ignores file paths based on the .gitignore specification
.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as cdk from '@aws-cdk/core';
const gitIgnoreStrategy = new cdk.GitIgnoreStrategy('absoluteRootPath', ['patterns']);
Initializer
new GitIgnoreStrategy(absoluteRootPath: string, patterns: string[])
Parameters
- absoluteRootPath
string
- patterns
string[]
Methods
Name | Description |
---|---|
add(pattern) | Adds another pattern. |
ignores(absoluteFilePath) | Determines whether a given file path should be ignored or not. |
add(pattern)
public add(pattern: string): void
Parameters
- pattern
string
Adds another pattern.
ignores(absoluteFilePath)
public ignores(absoluteFilePath: string): boolean
Parameters
- absoluteFilePath
string
— absolute file path to be assessed against the pattern.
Returns
boolean
Determines whether a given file path should be ignored or not.