From 09e474b21a47f58877c302b761d9be650689a8f5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nguy=E1=BB=85n=20C=C3=B4ng=20Thu=E1=BA=ADn=20Huy?= Date: Tue, 7 Apr 2026 18:14:16 +0700 Subject: [PATCH] chore: housekeeping (ruff, github actions, and more) --- .editorconfig | 6 ++++++ CONTRIBUTING.md | 3 +++ SECURITY.md | 3 +++ pyproject.toml | 17 +++++++++++++++++ 4 files changed, 29 insertions(+) create mode 100644 .editorconfig create mode 100644 CONTRIBUTING.md create mode 100644 SECURITY.md create mode 100644 pyproject.toml diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 00000000..ba095cbc --- /dev/null +++ b/.editorconfig @@ -0,0 +1,6 @@ +root = true + +[*] +indent_style = space +indent_size = 4 +charset = utf-8 diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 00000000..f59d856c --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,3 @@ +# Contributing + +Please install `pre-commit` before pushing. \ No newline at end of file diff --git a/SECURITY.md b/SECURITY.md new file mode 100644 index 00000000..a0ea7363 --- /dev/null +++ b/SECURITY.md @@ -0,0 +1,3 @@ +# Security Policy + +Report vulnerabilities via email. \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 00000000..928e5b74 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,17 @@ +[project] +name = "tmp7t2ldez9" +version = "0.1.0" +description = "" +requires-python = ">=3.9" +dependencies = [] + +[tool.ruff] +line-length = 88 +target-version = "py39" +select = ["E", "F", "I", "UP", "B", "SIM", "PTH"] + +[tool.ruff.isort] +known-first-party = ["tmp7t2ldez9"] + +[tool.black] +line-length = 88