Skip to content

Add codespell support (config, workflow to detect/not fix) and make it fix few typos #48

Add codespell support (config, workflow to detect/not fix) and make it fix few typos

Add codespell support (config, workflow to detect/not fix) and make it fix few typos #48

Workflow file for this run

name: Check Python formatting with Black
on:
pull_request:
branches:
- main
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
- uses: psf/black@stable
with:
black_args: "knowledge_storm --check"