From 48a317d5f67c72788ab699bc32b880eb12b2a835 Mon Sep 17 00:00:00 2001 From: Charlie Marsh Date: Wed, 22 Feb 2023 20:47:15 -0500 Subject: [PATCH] Change via to using (#3155) --- docs/configuration.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/configuration.md b/docs/configuration.md index 88cc89d706..66eaa75357 100644 --- a/docs/configuration.md +++ b/docs/configuration.md @@ -1,11 +1,11 @@ # Configuring Ruff -Ruff can be configured via a `pyproject.toml` file, a `ruff.toml` file, or through the command line. +Ruff can be configured through a `pyproject.toml` file, a `ruff.toml` file, or the command line. For a complete enumeration of the available configuration options, see [_Settings_](/docs/settings/). -### Via `pyproject.toml` +### Using `pyproject.toml` If left unspecified, Ruff's default configuration is equivalent to: @@ -115,7 +115,7 @@ If you're wondering how to configure Ruff, here are some **recommended guideline * By default, Ruff's autofix is aggressive. If you find that it's too aggressive for your liking, consider turning off autofix for specific rules or categories (see the [_FAQ_](/docs/faq/#ruff-tried-to-fix-something-but-it-broke-my-code-what-should-i-do)). -### Via `ruff.toml` +### Using `ruff.toml` As an alternative to `pyproject.toml`, Ruff will also respect a `ruff.toml` file, which implements an equivalent schema (though the `[tool.ruff]` hierarchy can be omitted).