From 49188818ef4a0f981944d7d1d6856606224505fc Mon Sep 17 00:00:00 2001 From: Lukas Vacula Date: Tue, 26 Mar 2024 11:53:32 -0400 Subject: [PATCH] ruff --- content/shortnotes/ruff/index.md | 11 +++++++++++ quick_config.sh | 4 ++-- 2 files changed, 13 insertions(+), 2 deletions(-) create mode 100644 content/shortnotes/ruff/index.md diff --git a/content/shortnotes/ruff/index.md b/content/shortnotes/ruff/index.md new file mode 100644 index 0000000..6932a13 --- /dev/null +++ b/content/shortnotes/ruff/index.md @@ -0,0 +1,11 @@ ++++ +title = "Ruff" +# description = "" +date = 2024-03-26 +# updated = 2024-03-26 +#draft = true +[taxonomies] +tags = ["shortnotes"] ++++ + +I tried the [Ruff linter for Python](https://github.com/astral-sh/ruff) today. It's pretty snazzy. I think it'll become part of my standard toolset for Python stuff. diff --git a/quick_config.sh b/quick_config.sh index 7ecb935..da4c8eb 100755 --- a/quick_config.sh +++ b/quick_config.sh @@ -13,8 +13,8 @@ else fi # Set User -git config user.name $GIT_USER -git config user.email $GIT_EMAIL +git config user.name "$GIT_USER" --replace-all +git config user.email "$GIT_EMAIL" # Sanity item git config credential.helper cache