Skip to content

Commit

Permalink
fixed lint
Browse files Browse the repository at this point in the history
flags = {"sentry": {"tracesSampleRate": 0}}
  • Loading branch information
HowardBraham committed Oct 1, 2024
1 parent 5da3701 commit a6d14e0
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion test/e2e/set-manifest-flags.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,9 @@ function getFlagsFromGitMessage(): object | undefined {
}

// Alter the manifest with CircleCI environment variables and custom flags
export function setManifestFlags(flags: ManifestFlags = {}) {
export function setManifestFlags(_flags: ManifestFlags = {}) {
let flags = _flags;

if (process.env.CIRCLECI) {
flags.circleci = {
enabled: true,
Expand Down

0 comments on commit a6d14e0

Please sign in to comment.