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