From 13f62976aab592aafac68ce20d689fd34beda9b0 Mon Sep 17 00:00:00 2001 From: evilchili Date: Mon, 25 Mar 2024 23:55:17 -0700 Subject: [PATCH] adding defaults.toml --- src/poetry_slam/defaults.toml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 src/poetry_slam/defaults.toml diff --git a/src/poetry_slam/defaults.toml b/src/poetry_slam/defaults.toml new file mode 100644 index 0000000..dab33dd --- /dev/null +++ b/src/poetry_slam/defaults.toml @@ -0,0 +1,22 @@ +### SLAM + +[tool.black] +line-length = 120 +target-version = ['py310'] + +[tool.isort] +multi_line_output = 3 +line_length = 120 +include_trailing_comma = true + +[tool.autoflake] +check = false # return error code if changes are needed +in-place = true # make changes to files instead of printing diffs +recursive = true # drill down directories recursively +remove-all-unused-imports = true # remove all unused imports (not just those from the standard library) +ignore-init-module-imports = true # exclude __init__.py when removing unused imports +remove-duplicate-keys = true # remove all duplicate keys in objects +remove-unused-variables = true # remove unused variables + + +### ENDSLAM