Skip to content

Commit 482ef7e

Browse files
authored
Merge pull request #60 from PyCQA/pre-commit-ci-update-config
[pre-commit.ci] pre-commit autoupdate
2 parents 9c5d3c8 + 1642889 commit 482ef7e

File tree

5 files changed

+8
-6
lines changed

5 files changed

+8
-6
lines changed

.pre-commit-config.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,29 @@
11
exclude: ^tests/fixtures/
22
repos:
33
- repo: https://github.com/pre-commit/pre-commit-hooks
4-
rev: v4.5.0
4+
rev: v6.0.0
55
hooks:
66
- id: check-yaml
77
- id: debug-statements
88
- id: end-of-file-fixer
99
- id: trailing-whitespace
1010
- repo: https://github.com/asottile/reorder-python-imports
11-
rev: v3.12.0
11+
rev: v3.15.0
1212
hooks:
1313
- id: reorder-python-imports
1414
args: [--application-directories, '.:src', --py36-plus]
1515
- repo: https://github.com/psf/black
16-
rev: 23.12.1
16+
rev: 25.1.0
1717
hooks:
1818
- id: black
1919
args: [--line-length=79]
2020
- repo: https://github.com/asottile/pyupgrade
21-
rev: v3.15.0
21+
rev: v3.20.0
2222
hooks:
2323
- id: pyupgrade
2424
args: [--py36-plus]
2525
- repo: https://github.com/asottile/setup-cfg-fmt
26-
rev: v2.5.0
26+
rev: v2.8.0
2727
hooks:
2828
- id: setup-cfg-fmt
2929
args: [--min-py3-version, '3.6']

setup.cfg

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ classifiers =
1414
Environment :: Console
1515
Framework :: Flake8
1616
Intended Audience :: Developers
17-
License :: OSI Approved :: MIT License
1817
Programming Language :: Python
1918
Programming Language :: Python :: 3
2019
Programming Language :: Python :: 3 :: Only

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""Packaging logic for Flake8-JSON."""
2+
23
import os
34
import sys
45

src/flake8_json_reporter/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
"""flake8_json_reporter module."""
2+
23
__version__ = "24.4.0"

src/flake8_json_reporter/reporters.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""Module containing all of the JSON reporters for Flake8."""
2+
23
import hashlib
34
import json
45
import textwrap

0 commit comments

Comments
 (0)