From 7e01277dc26e93c9eb74feeb1d7188c55ae4bc55 Mon Sep 17 00:00:00 2001
From: Nathan Thomas <nathanthomas707@gmail.com>
Date: Thu, 21 Dec 2023 13:17:41 -0800
Subject: [PATCH] Add lint rules

---
 pyproject.toml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pyproject.toml b/pyproject.toml
index 309fb08..9f0afeb 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -72,7 +72,7 @@ build-backend = "poetry.core.masonry.api"
 
 [tool.ruff.lint]
 # Enable Pyflakes (`F`) and a subset of the pycodestyle (`E`)  codes by default.
-select = ["E4", "E7", "E9", "F", "I", "ASYNC", "N"]
+select = ["E4", "E7", "E9", "F", "I", "ASYNC", "N", "RUF", "ERA001"]
 ignore = []
 
 # Allow fix for all enabled rules (when `--fix`) is provided.