Skip to content

Commit 3e3a87b

Browse files
committed
Fixes output detected by semgrep.
1 parent 690161e commit 3e3a87b

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

.github/workflows/semgrep.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
- master
88
schedule:
99
- cron: '0 0 * * *'
10-
name: Semgrep config
10+
name: Semgrep
1111
jobs:
1212
semgrep:
1313
name: semgrep/ci
@@ -21,4 +21,4 @@ jobs:
2121
image: semgrep/semgrep
2222
steps:
2323
- uses: actions/checkout@v4
24-
- run: semgrep ci
24+
- run: semgrep ci --verbose

.semgrepignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
.github/

bench/curves/ec.bench.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,6 @@ export function bench(): Benchmark.Suite {
2929
p2 = p.dbl()
3030
const json = writeJson(Group.Point, p),
3131
bytes = p.toBytes()
32-
console.log(`Point json size ${group.name}:`, json.length)
33-
console.log(`Point bytes size ${group.name}:`, bytes.length)
3432

3533
suite
3634
.add(`${group.name}/ec/add`, () => {

0 commit comments

Comments
 (0)