-
Notifications
You must be signed in to change notification settings - Fork 1
41 lines (39 loc) · 1.16 KB
/
style.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
name: Style
on: [push]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Check out source repository
uses: actions/checkout@v2
- name: python style check
uses: weibullguy/python-lint-plus@master
with:
python-root-list: "."
use-black: true
use-yapf: false
use-isort: true
use-docformatter: false
use-pycodestyle: true
use-autopep8: false
use-pydocstyle: true
use-mypy: false
use-pylint: false
use-flake8: true
use-mccabe: false
use-radon: false
use-rstcheck: false
use-check-manifest: false
use-pyroma: false
extra-black-options: "--line-length 112"
extra-yapf-options: ""
extra-isort-options: ""
extra-docformatter-options: ""
extra-pycodestyle-options: ""
extra-pydocstyle-options: ""
extra-mypy-options: ""
extra-pylint-options: ""
extra-flake8-options: "max-line-length = 112"
extra-mccabe-options: ""
extra-radon-options: ""
extra-rstcheck-options: ""