Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
python-ldapserver
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Terraform modules
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
uffd
python-ldapserver
Commits
5b16f046
Commit
5b16f046
authored
Oct 19, 2023
by
Julian Rother
Browse files
Options
Downloads
Patches
Plain Diff
Update pylint to v2.16.2 for python3.11 compatibility
parent
a3012289
Branches
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
.gitlab-ci.yml
+1
-1
1 addition, 1 deletion
.gitlab-ci.yml
.pylintrc
+4
-10
4 additions, 10 deletions
.pylintrc
with
5 additions
and
11 deletions
.gitlab-ci.yml
+
1
−
1
View file @
5b16f046
...
@@ -6,7 +6,7 @@ variables:
...
@@ -6,7 +6,7 @@ variables:
PYTHONPATH
:
deps/ldapalchemy
PYTHONPATH
:
deps/ldapalchemy
APT_API_URL
:
https://packages.cccv.de
APT_API_URL
:
https://packages.cccv.de
APT_REPO
:
uffd
APT_REPO
:
uffd
PYLINT_PIN
:
pylint~=2.1
0.0
PYLINT_PIN
:
pylint~=2.1
6.2
before_script
:
before_script
:
-
python3 -V
-
python3 -V
...
...
This diff is collapsed.
Click to expand it.
.pylintrc
+
4
−
10
View file @
5b16f046
...
@@ -64,13 +64,14 @@ disable=unused-argument, # Too many false-positives, we're implem
...
@@ -64,13 +64,14 @@ disable=unused-argument, # Too many false-positives, we're implem
too-few-public-methods, # Too many false-positives
too-few-public-methods, # Too many false-positives
no-else-return, # Personal stylistic preference
no-else-return, # Personal stylistic preference
attribute-defined-outside-init, # False-positives with socketserver
attribute-defined-outside-init, # False-positives with socketserver
no-self-use, # Too many false-positives
superfluous-parens, # The extra parens we have aid readability
missing-module-docstring, # Temporarily disabled
missing-module-docstring, # Temporarily disabled
missing-class-docstring, # Temporarily disabled
missing-class-docstring, # Temporarily disabled
missing-function-docstring, # Temporarily disabled
missing-function-docstring, # Temporarily disabled
empty-docstring, # Temporarily disabled
empty-docstring, # Temporarily disabled
consider-using-f-string, # Temporarily disabled
consider-using-f-string, # Temporarily disabled
line-too-long, # Temporarily disabled
line-too-long, # Temporarily disabled
broad-exception-raised, # Temporarily disabled
# Enable the message, report, category or checker with the given id(s). You can
# Enable the message, report, category or checker with the given id(s). You can
# either give multiple identifier separated by comma (,) or put this option
# either give multiple identifier separated by comma (,) or put this option
...
@@ -385,13 +386,6 @@ max-line-length=160
...
@@ -385,13 +386,6 @@ max-line-length=160
# Maximum number of lines in a module.
# Maximum number of lines in a module.
max-module-lines=1000
max-module-lines=1000
# List of optional constructs for which whitespace checking is disabled. `dict-
# separator` is used to allow tabulation in dicts, etc.: {1 : 1,\n222: 2}.
# `trailing-comma` allows a space between comma and closing bracket: (a, ).
# `empty-line` allows space-only lines.
no-space-check=trailing-comma,
dict-separator
# Allow the body of a class to be on the same line as the declaration if body
# Allow the body of a class to be on the same line as the declaration if body
# contains single statement.
# contains single statement.
single-line-class-stmt=no
single-line-class-stmt=no
...
@@ -512,5 +506,5 @@ min-public-methods=2
...
@@ -512,5 +506,5 @@ min-public-methods=2
# Exceptions that will emit a warning when being caught. Defaults to
# Exceptions that will emit a warning when being caught. Defaults to
# "BaseException, Exception".
# "BaseException, Exception".
overgeneral-exceptions=BaseException,
overgeneral-exceptions=
builtins.
BaseException,
Exception
builtins.
Exception
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