Skip to content

Commit

Permalink
[automated] Fix linting with Prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
nf-core-bot committed Sep 5, 2024
1 parent 5096157 commit a25d22d
Showing 1 changed file with 17 additions and 18 deletions.
35 changes: 17 additions & 18 deletions modules/environment-schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,27 +18,26 @@
"dependencies": {
"type": "array",
"items": {
"oneOf": [
{
"type": "string",
"pattern": "^.*[^><]=[^><].*$",
"$comment": "The above pattern ensures that all packages are pinned to a specific version. This ensures the reproducibility of the environment"
},
{
"type": "object",
"properties": {
"pip": {
"type": "array",
"items": {
"type": "string",
"pattern": "^.*==.*$",
"$comment": "The above pattern ensures that all packages are pinned to a specific version. This ensures the reproducibility of the environment"
"oneOf": [
{
"type": "string",
"pattern": "^.*[^><]=[^><].*$",
"$comment": "The above pattern ensures that all packages are pinned to a specific version. This ensures the reproducibility of the environment"
},
{
"type": "object",
"properties": {
"pip": {
"type": "array",
"items": {
"type": "string",
"pattern": "^.*==.*$",
"$comment": "The above pattern ensures that all packages are pinned to a specific version. This ensures the reproducibility of the environment"
}
}
}
}
}
}
]

}
}
},
Expand Down

0 comments on commit a25d22d

Please sign in to comment.