Add pre-commit (#140)

* Add pre-commit config files

* Add linting test on github action
pull/197/head
Shubhank Saxena 2021-05-26 20:28:17 +05:30 zatwierdzone przez GitHub
rodzic 94b26a8781
commit 8f228d6844
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
6 zmienionych plików z 53 dodań i 1 usunięć

15
.github/workflows/lint_test.yml vendored 100644
Wyświetl plik

@ -0,0 +1,15 @@
on:
pull_request:
push:
branches:
- main
jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
- uses: pre-commit/action@v2.0.0
with:
token: ${{ secrets.GITHUB_TOKEN }}

Wyświetl plik

@ -0,0 +1,15 @@
repos:
- repo: https://gitlab.com/pycqa/flake8
rev: 3.7.9
hooks:
- id: flake8
- repo: https://github.com/pycqa/isort
rev: 5.5.4
hooks:
- id: isort
args: ["--profile", "black"]
- repo: https://github.com/psf/black
rev: 20.8b1
hooks:
- id: black
language_version: python3

Wyświetl plik

@ -190,6 +190,6 @@ If you like the project, here's a few things you can do
- Open issues, participate on discussions, report bugs, suggest ideas
- Star the project
- Add functionality, work on a PR, fix an issue!
- Before you send a PR, make sure your code is properly formatted. For that, use `pre-commit install` to install a pre-commit hook and run `pre-commit run --all` and fix everything before you commit. This pre-commit will check for your code lint everytime you commit a code.
## Contact
info@mediacms.io

17
pyproject.toml 100644
Wyświetl plik

@ -0,0 +1,17 @@
[tool.black]
line-length = 200
target-version = ['py36', 'py37', 'py38']
skip-string-normalization = true
include = '\.pyi?$'
exclude = '''
/(
\.*
| \.git
| \.mypy_cache
| \.venv
# The following are specific to Black, you probably don't want those.
| blib2to3
| tests/data
| profiling
)/
'''

Wyświetl plik

@ -32,3 +32,4 @@ flake8
pep8
django-silk
django-debug-toolbar
pre-commit

4
setup.cfg 100644
Wyświetl plik

@ -0,0 +1,4 @@
[flake8]
exclude = .git,*migrations*
max-line-length = 119
ignore=F401,E711,E302,E201,E501,E303,E231,F841,E722