We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 690161e commit 3e3a87bCopy full SHA for 3e3a87b
.github/workflows/semgrep.yml
@@ -7,7 +7,7 @@ on:
7
- master
8
schedule:
9
- cron: '0 0 * * *'
10
-name: Semgrep config
+name: Semgrep
11
jobs:
12
semgrep:
13
name: semgrep/ci
@@ -21,4 +21,4 @@ jobs:
21
image: semgrep/semgrep
22
steps:
23
- uses: actions/checkout@v4
24
- - run: semgrep ci
+ - run: semgrep ci --verbose
.semgrepignore
@@ -0,0 +1 @@
1
+.github/
bench/curves/ec.bench.ts
@@ -29,8 +29,6 @@ export function bench(): Benchmark.Suite {
29
p2 = p.dbl()
30
const json = writeJson(Group.Point, p),
31
bytes = p.toBytes()
32
- console.log(`Point json size ${group.name}:`, json.length)
33
- console.log(`Point bytes size ${group.name}:`, bytes.length)
34
35
suite
36
.add(`${group.name}/ec/add`, () => {
0 commit comments