Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
DeepInverse
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
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
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Hailu, Dawit
DeepInverse
Commits
b527088b
Commit
b527088b
authored
4 years ago
by
William Falcon
Browse files
Options
Downloads
Patches
Plain Diff
clean up sample project
parent
5969853a
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
.pep8speaks.yml
+0
-30
0 additions, 30 deletions
.pep8speaks.yml
with
0 additions
and
30 deletions
.pep8speaks.yml
deleted
100644 → 0
+
0
−
30
View file @
5969853a
# File : .pep8speaks.yml
scanner
:
diff_only
:
True
# If False, the entire file touched by the Pull Request is scanned for errors. If True, only the diff is scanned.
linter
:
pycodestyle
# Other option is flake8
pycodestyle
:
# Same as scanner.linter value. Other option is flake8
max-line-length
:
120
# Default is 79 in PEP 8
ignore
:
# Errors and warnings to ignore
-
W504
# line break after binary operator
-
E402
# module level import not at top of file
-
E731
# do not assign a lambda expression, use a def
-
C406
# Unnecessary list literal - rewrite as a dict literal.
-
E741
# ambiguous variable name
-
F401
-
F841
no_blank_comment
:
True
# If True, no comment is made on PR without any errors.
descending_issues_order
:
False
# If True, PEP 8 issues in message will be displayed in descending order of line numbers in the file
message
:
# Customize the comment made by the bot,
opened
:
# Messages when a new PR is submitted
header
:
"
Hello
@{name}!
Thanks
for
opening
this
PR.
"
# The keyword {name} is converted into the author's username
footer
:
"
Do
see
the
[Hitchhiker's
guide
to
code
style](https://goo.gl/hqbW4r)"
# The messages can be written as they would over GitHub
updated
:
# Messages when new commits are added to the PR
header
:
"
Hello
@{name}!
Thanks
for
updating
this
PR.
"
footer
:
"
"
# Why to comment the link to the style guide everytime? :)
no_errors
:
"
There
are
currently
no
PEP
8
issues
detected
in
this
Pull
Request.
Cheers!
:beers:
"
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