Skip to content

Commit

Permalink
chore(ruff): remove preview (#277)
Browse files Browse the repository at this point in the history
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
  • Loading branch information
rokam and pre-commit-ci[bot] authored Aug 21, 2024
1 parent 54f1bf4 commit 95dadb3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
4 changes: 1 addition & 3 deletions ruff.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ target-version = "py311"

lint.select = ["ALL"]

lint.preview = true
lint.preview = false

lint.ignore = [
"ANN101", # Missing type annotation for `self` in method
Expand All @@ -11,8 +11,6 @@ lint.ignore = [
"CPY001", # Missing copyright notice at top of file
"D203", # 1 blank line required before class docstring
"D213", # Multi-line docstring summary should start at the second line
"DOC201", # Docstring missing returns
"DOC501", # Docstring missing raises
"EM101", # Exception must not use a string literal, assign to variable first
"EM102", # Exception must not use an f-string literal, assign to variable first
"FBT001", # Boolean-typed positional argument in function definition
Expand Down
2 changes: 1 addition & 1 deletion tests/cli_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

import json
import logging
import subprocess # noqa: S404
import subprocess
import sys
from argparse import Namespace
from pathlib import Path
Expand Down

0 comments on commit 95dadb3

Please sign in to comment.