Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion cycode/cli/consts.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@
'package.json',
'package-lock.json',
'yarn.lock',
'deno.lock',
'pnpm-lock.yaml',
'npm-shrinkwrap.json',
'packages.config',
Expand Down Expand Up @@ -127,7 +128,7 @@
'go': ['go.sum', 'go.mod', 'go.mod.graph', 'Gopkg.lock'],
'maven_pom': ['pom.xml'],
'maven_gradle': ['build.gradle', 'build.gradle.kts', 'gradle.lockfile'],
'npm': ['package.json', 'package-lock.json', 'yarn.lock', 'npm-shrinkwrap.json', '.npmrc', 'pnpm-lock.yaml'],
'npm': ['package.json', 'package-lock.json', 'yarn.lock', 'npm-shrinkwrap.json', '.npmrc', 'pnpm-lock.yaml','deno.lock'],

Check failure on line 131 in cycode/cli/consts.py

View workflow job for this annotation

GitHub Actions / ruff

Ruff (E501)

cycode/cli/consts.py:131:121: E501 Line too long (125 > 120)
'nuget': ['packages.config', 'project.assets.json', 'packages.lock.json', 'nuget.config'],
'ruby_gems': ['Gemfile', 'Gemfile.lock'],
'sbt': ['build.sbt', 'build.scala', 'build.sbt.lock'],
Expand Down
Loading