Skip to content

Commit

Permalink
Globally disabled consider-using-f-string pylint check
Browse files Browse the repository at this point in the history
Signed-off-by: dherrada <dylan.herrada@adafruit.com>
  • Loading branch information
evaherrada committed Sep 24, 2021
1 parent 7fc5c6f commit be11c77
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 be11c77

Please sign in to comment.