diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index 93fceab..5e2055f 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -21,11 +21,28 @@ Thank you for considering contributing to UniFace! We welcome contributions of a
### Code Style
+This project uses [Ruff](https://docs.astral.sh/ruff/) for linting and formatting.
+
+```bash
+# Check for linting errors
+ruff check .
+
+# Auto-fix linting errors
+ruff check . --fix
+
+# Format code
+ruff format .
+```
+
+**Guidelines:**
- Follow PEP8 guidelines
- Use type hints (Python 3.10+)
- Write docstrings for public APIs
+- Line length: 120 characters
- Keep code simple and readable
+All PRs must pass `ruff check .` before merging.
+
## Development Setup
```bash
diff --git a/README.md b/README.md
index 0440287..814a7b0 100644
--- a/README.md
+++ b/README.md
@@ -1,11 +1,15 @@
# UniFace: All-in-One Face Analysis Library
+
+
[](https://opensource.org/licenses/MIT)
[](https://www.python.org/)
[](https://pypi.org/project/uniface/)
[](https://github.com/yakhyo/uniface/actions)
-[](https://pepy.tech/project/uniface)
-[](https://deepwiki.com/yakhyo/uniface)
+[](https://pepy.tech/project/uniface)
+[](https://deepwiki.com/yakhyo/uniface)
+
+

diff --git a/scripts/run_anonymization.py b/scripts/run_anonymization.py
index 3c8d432..1e2e00c 100644
--- a/scripts/run_anonymization.py
+++ b/scripts/run_anonymization.py
@@ -205,4 +205,3 @@ Examples:
if __name__ == '__main__':
main()
-