-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #934 from forcedotcom/dev
RELEASE: @W-12278374@: Merging dev to release for 3.8.0
- Loading branch information
Showing
99 changed files
with
5,945 additions
and
1,520 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
module.exports = { | ||
"output": { | ||
"engineSummaryTemplate": "Executed %s, found %s violation(s) across %s file(s).", | ||
"noViolationsDetected": "Executed engines: %s. No rule violations found.", | ||
"sevThresholdSummary": "Rule violations of severity %s or more severe were detected.", | ||
"writtenToConsole": "Rule violations were logged to the console.", | ||
"writtenToOutFile": "Rule violations were written to %s." | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,9 @@ | ||
module.exports = { | ||
"spinnerStart": "Analyzing with Salesforce Graph Engine. See %s for details.", | ||
"pleaseWait": "Please wait" | ||
"messages": { | ||
"pleaseWait": "Please wait", | ||
"spinnerStart": "Analyzing with Salesforce Graph Engine. See %s for details." | ||
}, | ||
"errors": { | ||
"failedWithoutProjectDir": `The --projectdir|-p flag is missing. Rerun your command with --projectdir|-p to allow Graph Engine to run, or with --engine|-e to exclude Graph Engine from execution.` | ||
} | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
module.exports = { | ||
"flags": { | ||
"formatDescription": "specify results output format", | ||
"formatDescriptionLong": "Specifies results output format written directly to the console.", | ||
"normalizesevDescription": "return normalized severity 1 (high), 2 (moderate), and 3 (low), and the engine-specific severity", | ||
"normalizesevDescriptionLong": "Returns normalized severity 1 (high), 2 (moderate), and 3 (low), and the engine-specific severity. For the html option, the normalized severity is displayed instead of the engine severity.", | ||
"outfileDescription": "write output to a file", | ||
"outfileDescriptionLong": "Writes output to a file.", | ||
"projectdirDescription": "provide root directory of project", | ||
"projectdirDescriptionLong": "Provides the relative or absolute root project directory used to set the context for Graph Engine's analysis. Project directory must be a path, not a glob. Specify multiple values as a comma-separated list.", | ||
"sevthresholdDescription": "throw an error when a violation threshold is reached, the --normalize-severity is invoked, and severity levels are reset to the baseline", | ||
"sevthresholdDescriptionLong": "Throws an error when violations are found with equal or greater severity than the provided value. Values are 1 (high), 2 (moderate), and 3 (low). Exit code is the most severe violation. Using this flag also invokes the --normalize-severity flag." | ||
}, | ||
"validations": { | ||
"cannotWriteTableToFile": "Format 'table' can't be written to a file. Specify a different format.", | ||
"outfileFormatMismatch": "The selected output format doesn't match the output file type. Output format: %s. Output file type: %s.", | ||
"outfileMustBeValid": "--outfile must be a well-formed filepath.", | ||
"outfileMustBeSupportedType": "--outfile must be of a supported type: .csv; .xml; .json; .html; .sarif.", | ||
"projectdirCannotBeGlob": "--projectdir cannot specify globs", | ||
"projectdirMustBeDir": "--projectdir must specify directories", | ||
"projectdirMustExist": "--projectdir must specify existing paths" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.