Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
Spack
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
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
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
eic_tools
Spack
Commits
e95eedb1
Commit
e95eedb1
authored
8 years ago
by
Joseph Ciurej
Browse files
Options
Downloads
Patches
Plain Diff
Added a style checking exemption for lambda expressions.
parent
734fb459
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
.flake8
+4
-1
4 additions, 1 deletion
.flake8
with
4 additions
and
1 deletion
.flake8
+
4
−
1
View file @
e95eedb1
...
@@ -8,6 +8,9 @@
...
@@ -8,6 +8,9 @@
# - E221: multiple spaces before operator
# - E221: multiple spaces before operator
# - E241: multiple spaces after ‘,’
# - E241: multiple spaces after ‘,’
#
#
# Let people use terse Python features:
# - E731 : lambda expressions
#
# Spack allows wildcard imports:
# Spack allows wildcard imports:
# - F403: disable wildcard import
# - F403: disable wildcard import
#
#
...
@@ -16,5 +19,5 @@
...
@@ -16,5 +19,5 @@
# - F999: name name be undefined or undefined from star imports.
# - F999: name name be undefined or undefined from star imports.
#
#
[
flake8
]
[
flake8
]
ignore
=
E221
,
E241
,
F403
,
F821
,
F999
ignore
=
E221
,
E241
,
E731
,
F403
,
F821
,
F999
max
-
line
-
length
=
79
max
-
line
-
length
=
79
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