Skip to content

Commit

Permalink
Remove no-space-check from MegaLinter default .pylintrc file
Browse files Browse the repository at this point in the history
Fixes #1923
  • Loading branch information
nvuillam committed Oct 2, 2022
1 parent 67c1770 commit 16ca03d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),

Note: Can be used with `oxsecurity/megalinter@beta` in your GitHub Action mega-linter.yml file, or with `oxsecurity/megalinter:beta` docker image

- Remove `no-space-check` from MegaLinter default `.pylintrc` file ([#1923](https://github.com/oxsecurity/megalinter/issues/1923))

- Linter versions upgrades
<!-- linter-versions-end -->

Expand Down
3 changes: 1 addition & 2 deletions TEMPLATES/.pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -346,8 +346,7 @@ max-module-lines=1000
# 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
# no-space-check=trailing-comma, dict-separator # Deprecated since pylint 2.6

# Allow the body of a class to be on the same line as the declaration if body
# contains single statement.
Expand Down

0 comments on commit 16ca03d

Please sign in to comment.