diff --git a/.github/workflows/misspell.yml b/.github/workflows/misspell.yml new file mode 100644 index 0000000..83966ab --- /dev/null +++ b/.github/workflows/misspell.yml @@ -0,0 +1,19 @@ +name: misspell + +on: + schedule: + - cron: '0 0 * * *' + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - uses: sobolevn/misspell-fixer-action@0.1.0 + - uses: peter-evans/create-pull-request@v2.4.4 + with: + token: ${{ secrets.GITHUB_TOKEN }} + commit-message: 'Fixes by misspell-fixer' + title: 'Typos fix by misspell-fixer' diff --git a/.travis.yml b/.travis.yml index 28efb80..f9b17cd 100644 --- a/.travis.yml +++ b/.travis.yml @@ -20,7 +20,7 @@ script: - poetry run pytest - poetry check - poetry run pip check - - poetry run safety check --bare --full-report + - poetry run safety check --full-report after_success: - pip install coveralls diff --git a/CHANGELOG.md b/CHANGELOG.md index 02952a5..a815bad 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,13 @@ We follow Semantic Versions since the `0.1.0` release. +## 0.4.0 + +### Features + +- Adds `python3.5` support + + ## 0.3.0 ### Features diff --git a/pyproject.toml b/pyproject.toml index f62cc56..16c91ae 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,7 +5,7 @@ build-backend = "poetry.masonry.api" [tool.poetry] name = "flake8-eradicate" -version = "0.3.0" +version = "0.4.0" description = "Flake8 plugin to find commented out code" license = "MIT" diff --git a/setup.cfg b/setup.cfg index 81d273c..0827fa4 100644 --- a/setup.cfg +++ b/setup.cfg @@ -47,6 +47,7 @@ addopts = # isort configuration: # https://github.com/timothycrosley/isort/wiki/isort-Settings include_trailing_comma = true +use_parentheses = true # See https://github.com/timothycrosley/isort#multi-line-output-modes multi_line_output = 3 # Is the same as 80 in flake8: