Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
nomad-FAIR
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
nomad-lab
nomad-FAIR
Commits
1da0612c
Commit
1da0612c
authored
1 month ago
by
Theodore Chang
Browse files
Options
Downloads
Plain Diff
Merge branch 'tlc/ignore-warning' into 'develop'
Ignore more warnings See merge request
!2454
parents
ba04f115
b8a561a7
No related branches found
No related tags found
1 merge request
!2454
Ignore more warnings
Pipeline
#258115
failed
1 month ago
Stage: build
Stage: test
Stage: release
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
pyproject.toml
+5
-3
5 additions, 3 deletions
pyproject.toml
with
5 additions
and
3 deletions
pyproject.toml
+
5
−
3
View file @
1da0612c
...
@@ -124,19 +124,21 @@ select = [
...
@@ -124,19 +124,21 @@ select = [
"W"
,
# pycodestyle
"W"
,
# pycodestyle
]
]
ignore
=
[
ignore
=
[
"E402"
,
# Module level import not at top of file
"E501"
,
# Line too long ({width} > {limit} characters)
"E501"
,
# Line too long ({width} > {limit} characters)
"E701"
,
# Multiple statements on one line (colon)
"E701"
,
# Multiple statements on one line (colon)
"E731"
,
# Do not assign a lambda expression, use a def
"E731"
,
# Do not assign a lambda expression, use a def
"
E402"
,
# Module level import not at top of file
"
PLR0904"
,
# too-many-public-methods
"PLR0911"
,
# Too many return statements
"PLR0911"
,
# Too many return statements
"PLR0912"
,
# Too many branches
"PLR0912"
,
# Too many branches
"PLR0913"
,
# Too many arguments in function definition
"PLR0913"
,
# Too many arguments in function definition
"PLR0915"
,
# Too many statements
"PLR0915"
,
# Too many statements
"PLR0917"
,
# too-many-positional-arguments
"PLR1714"
,
# consider-using-in
"PLR2004"
,
# Magic value used instead of constant
"PLR2004"
,
# Magic value used instead of constant
"PLR5501"
,
# else-if-used
"PLW0603"
,
# Using the global statement
"PLW0603"
,
# Using the global statement
"PLW2901"
,
# redefined-loop-name
"PLW2901"
,
# redefined-loop-name
"PLR1714"
,
# consider-using-in
"PLR5501"
,
# else-if-used
]
]
fixable
=
[
"ALL"
]
fixable
=
[
"ALL"
]
isort.split-on-trailing-comma
=
false
isort.split-on-trailing-comma
=
false
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment