From fff68b2012efcc3e632751cdb856005d730ffb7b Mon Sep 17 00:00:00 2001 From: Patrick Ogenstad Date: Sun, 30 Jun 2024 19:17:17 +0200 Subject: [PATCH] Move section for commented out code, remove shebang (#949) --- docs/conf.py | 1 - pyproject.toml | 5 ++--- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index 47b1b225..84aa4b32 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -1,4 +1,3 @@ -#!/usr/bin/env python3 # -*- coding: utf-8 -*- # # nornir documentation build configuration file, created by diff --git a/pyproject.toml b/pyproject.toml index 64059753..a28770b3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -135,8 +135,6 @@ ignore = [ "B028", # No explicit `stacklevel` keyword argument found "C419", # Unnecessary list comprehension "COM812", # Trailing comma missing - "ERA001", # Found commented-out code - "EXE001", # Shebang is present but file is not executable "FBT001", # Boolean-typed positional argument in function definition "FBT002", # Boolean default positional argument in function definition "FURB101", # `open` and `read` should be replaced by `Path(filename).read_text()` @@ -196,7 +194,8 @@ max-returns = 11 [tool.ruff.lint.per-file-ignores] "docs/conf.py" = [ - "A001", # Variable `copyright` is shadowing a Python builtin + "A001", # Variable `copyright` is shadowing a Python builtin + "ERA001", # Commented out code, used to provide examples for Sphinx docs ] "docs/highlighter.py" = [