Skip to content

Commit

Permalink
Merge pull request #84 from adafruit/pylint-test
Browse files Browse the repository at this point in the history
TEST PR FOR PATCH: Globally disabled consider-using-f-string pylint check
  • Loading branch information
kattni committed Sep 23, 2021
2 parents 3711f95 + 351ab4e commit 6c92d62
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,5 +30,5 @@ repos:
name: pylint (examples code)
description: Run pylint rules on "examples/*.py" files
entry: /usr/bin/env bash -c
args: ['([[ ! -d "examples" ]] || for example in $(find . -path "./examples/*.py"); do pylint --disable=missing-docstring,invalid-name $example; done)']
args: ['([[ ! -d "examples" ]] || for example in $(find . -path "./examples/*.py"); do pylint --disable=missing-docstring,invalid-name,consider-using-f-string $example; done)']
language: system

0 comments on commit 6c92d62

Please sign in to comment.