From f19e08768c39480e0bdea542397d4e053187c433 Mon Sep 17 00:00:00 2001 From: gsheni Date: Thu, 2 May 2024 10:10:53 -0400 Subject: [PATCH] remove setup.cfg --- pyproject.toml | 5 +++-- setup.cfg | 30 ------------------------------ 2 files changed, 3 insertions(+), 32 deletions(-) delete mode 100644 setup.cfg diff --git a/pyproject.toml b/pyproject.toml index 6f2de9c2..d22c242e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -192,8 +192,9 @@ select = [ # Pycodestyle "E", "W", + "D200", # isort - "I001" + "I001", ] ignore = [ "E501", @@ -218,4 +219,4 @@ known-first-party = ["copulas"] "__init__.py" = ["F401", "E402", "F403", "F405", "E501", "I001"] [tool.ruff.lint.pydocstyle] -convention = "google" \ No newline at end of file +convention = "google" diff --git a/setup.cfg b/setup.cfg deleted file mode 100644 index 6e9c4d8e..00000000 --- a/setup.cfg +++ /dev/null @@ -1,30 +0,0 @@ -[flake8] -max-line-length = 99 -exclude = docs, .git, __pycache__, .ipynb_checkpoints -extend-ignore = - # Missing docstring in __init__ - D107, - # Missing blank line after last section - D413, - # insecure use of "pickle" or "cPickle" - DUO103 - # argument name 'X' should be lowercase - N803, - # variable 'X' in function should be lowercase - N806, - # String literal formatting using f-string. - SFS3, - # Single letter variable names are not allowed - VNE001, - # TokenError: unterminated string literal - E902 -per-file-ignores = - large_scale_evaluation.py:T001 - - -[aliases] -test = pytest - -[doc8] -max-line-length = 99 -