diff --git a/.github/stale.yml b/.github/stale.yml index 7a6a571..f767674 100644 --- a/.github/stale.yml +++ b/.github/stale.yml @@ -6,10 +6,10 @@ daysUntilClose: 7 # Issues with these labels will never be considered stale exemptLabels: - - "Type: Security" + - 'Type: Security' # Label to use when marking an issue as stale -staleLabel: "Status: Abandoned" +staleLabel: 'Status: Abandoned' # Comment to post when marking an issue as stale. Set to `false` to disable markComment: > diff --git a/src/edge_buffer/index.ts b/src/edge_buffer/index.ts index 7b06a2a..ab86e1e 100644 --- a/src/edge_buffer/index.ts +++ b/src/edge_buffer/index.ts @@ -134,9 +134,7 @@ export class EdgeBuffer { * Write catch block */ buffer.push( - `${this.#options.rethrowCallPath}(error, ${this.#options.fileNameVar}, ${ - this.#options.lineVar - });` + `${this.#options.rethrowCallPath}(error, ${this.#options.fileNameVar}, ${this.#options.lineVar});` ) /** diff --git a/tsconfig.json b/tsconfig.json index d098915..ad0cc44 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -3,5 +3,5 @@ "compilerOptions": { "rootDir": "./", "outDir": "./build" - }, + } }