Skip to content

Change the black line length to default 88 #38

Change the black line length to default 88

Change the black line length to default 88 #38

Workflow file for this run

name: Lint
on: [ push, pull_request ]
jobs:
black:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: psf/black@stable
with:
options: "--check --line-length=100 --verbose"
ruff:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: chartboost/ruff-action@v1
with:
args: "--line-length=100 --ignore=E501"