From 4fe65f75bcac9a89987b4ecae00f7abf18e8c5d6 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 29 Mar 2024 12:09:24 +0530 Subject: [PATCH] Move to using ruff for formatting --- pyproject.toml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 877f13b85..6eb87dc2e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -30,7 +30,5 @@ select = ['E', 'F', 'I', 'RUF100'] "kitty/options/types.py" = ["E501"] "kitty/options/parse.py" = ["E501"] -[tool.black] -line-length = 160 -target-version = ['py38'] -skip-string-normalization = true +[tool.ruff.format] +quote-style = 'single'