Skip to content

Commit fa81063

Browse files
Bump wemake-python-styleguide from 0.13.4 to 0.14.0 (#203)
* Bump wemake-python-styleguide from 0.13.4 to 0.14.0 Bumps [wemake-python-styleguide](https://github.com/wemake-services/wemake-python-styleguide) from 0.13.4 to 0.14.0. - [Release notes](https://github.com/wemake-services/wemake-python-styleguide/releases) - [Changelog](https://github.com/wemake-services/wemake-python-styleguide/blob/master/CHANGELOG.md) - [Commits](wemake-services/wemake-python-styleguide@0.13.4...0.14.0) Signed-off-by: dependabot-preview[bot] <[email protected]> * Update conf.py * Update cli.py * Update lexer.py * Update report.py * Update report.py Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com> Co-authored-by: Nikita Sobolev <[email protected]>
1 parent 9949e9b commit fa81063

File tree

6 files changed

+29
-164
lines changed

6 files changed

+29
-164
lines changed

docs/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ def _get_project_meta():
3131

3232
pkg_meta = _get_project_meta()
3333
project = pkg_meta['name']
34-
copyright = '2018, wemake.services' # noqa: A001
34+
copyright = '2018, wemake.services' # noqa: WPS125
3535
author = 'wemake.services'
3636

3737
# The short X.Y version

dotenv_linter/cli.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ def cli(version):
3030
Runs ``--version`` subcommand if this option is provided.
3131
"""
3232
if version:
33-
print(pkg_version) # noqa: T001
33+
print(pkg_version) # noqa: WPS421
3434

3535

3636
@cli.command()
@@ -47,5 +47,5 @@ def lint(files: Tuple[str, ...]):
4747
try:
4848
checker.run()
4949
except Exception as ex:
50-
print(ex, file=sys.stderr) # noqa: T001
50+
print(ex, file=sys.stderr) # noqa: WPS421
5151
checker.fail()

dotenv_linter/grammar/lexer.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ def reset(self) -> 'DotenvLexer':
5353
self._lexer.begin('INITIAL')
5454
return self
5555

56-
def input(self, text: str) -> 'DotenvLexer': # noqa: A003
56+
def input(self, text: str) -> 'DotenvLexer': # noqa: WPS125
5757
"""
5858
Passes input to the lexer.
5959

dotenv_linter/logics/report.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ def report(self) -> None:
4141
)
4242

4343
for ordered_violation in sorted_violations:
44-
print( # noqa: T001
44+
print( # noqa: WPS421
4545
'{0}:{1}'.format(self._filename, ordered_violation.as_line()),
4646
file=sys.stderr,
4747
)

0 commit comments

Comments
 (0)