Skip to content

Commit 64c8110

Browse files
committed
Disable recommended
1 parent d8336a3 commit 64c8110

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ lint.select = [
235235
"G", # flake8-logging-format
236236
"I", # isort
237237
"ICN001", # import concentions; {name} should be imported as {asname}
238-
"ISC001", # Implicitly concatenated string literals on one line
238+
# "ISC001", # Implicitly concatenated string literals on one line
239239
"N804", # First argument of a class method should be named cls
240240
"N805", # First argument of a method should be named self
241241
"N815", # Variable {name} in class scope should not be mixedCase

scripts/tests_and_coverage.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ fi
3737
if [ -z "${GITHUB_ACTIONS}" ] || [ "$1" == "linting" ] ; then
3838
# Black first to ensure nothings roughing up ruff
3939
echo "... ruff-ing ..."
40+
ruff format plugwise/ tests/
4041
ruff check plugwise/ tests/
4142

4243
echo "... pylint-ing ..."

0 commit comments

Comments
 (0)