Skip to content

Commit a906571

Browse files
committed
add black config, pre-commit and github action
1 parent 2588b00 commit a906571

File tree

3 files changed

+19
-0
lines changed

3 files changed

+19
-0
lines changed

.github/workflows/black.yml

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
name: Lint
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
lint:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@v2
10+
- uses: psf/black@stable

.pre-commit-config.yaml

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
repos:
2+
- repo: https://github.com/psf/black
3+
rev: 22.6.0
4+
hooks:
5+
- id: black
6+
language_version: python3.9

pyproject.toml

+3
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,6 @@ omit = [
1212
"*/tests/*",
1313
"*/migrations/*",
1414
]
15+
16+
[tool.black]
17+
line-length = 99

0 commit comments

Comments
 (0)