chore(lint): more linting fixes

This commit is contained in:
2025-04-30 17:22:21 +03:00
parent af085bf9bb
commit d0669e4dd0
6 changed files with 98 additions and 61 deletions

View File

@@ -6,22 +6,22 @@ This guide will help you get started.
## 🛠 Project Setup
1. Clone the repository:
```bash
git clone https://github.com/your-username/aeonview.git
cd aeonview
```
```bash
git clone https://github.com/your-username/aeonview.git
cd aeonview
```
2. Set up your environment:
```bash
python3 -m venv venv
source venv/bin/activate
pip install -r dev-requirements.txt
```
```bash
python3 -m venv venv
source venv/bin/activate
pip install -r dev-requirements.txt
```
3. Install pre-commit hooks:
```bash
pre-commit install
```
```bash
pre-commit install
```
## ✅ Development Workflow
@@ -46,20 +46,20 @@ make lint # check for lint errors
## ✅ Submitting a Pull Request
1. Create a feature branch:
```bash
git checkout -b feature/my-new-feature
```
```bash
git checkout -b feature/my-new-feature
```
2. Commit your changes:
```bash
git add .
git commit -m "feat: add support for X"
```
```bash
git add .
git commit -m "feat: add support for X"
```
3. Push and open a pull request:
```bash
git push origin feature/my-new-feature
```
```bash
git push origin feature/my-new-feature
```
4. Follow the PR template and link any relevant issues.