Files
ss-tools/CONTRIBUTING.md
busya ec6421de35 rename ss-tools to superset-tools across the entire project
- Replace all occurrences of 'ss-tools' with 'superset-tools' in 104 files
- Rename git bundle file ss-tools.bundle → superset-tools.bundle
- Update .gitignore pattern accordingly
- Preserve variable names (hasSsTools etc.) and code identifiers
2026-06-16 11:15:19 +03:00

33 lines
1.3 KiB
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Contributing to superset-tools
Спасибо за интерес к проекту! Мы принимаем contributions через pull request.
## Как помочь
- **Сообщить об ошибке** — создайте [issue](https://github.com/anomalyco/superset-tools/issues/new)
- **Предложить идею** — создайте issue с меткой `enhancement`
- **Исправить баг** — форкните репозиторий, сделайте PR
## Процесс
1. Форкните репозиторий
2. Создайте ветку: `git checkout -b feature/your-feature`
3. Внесите изменения
4. Убедитесь, что тесты проходят:
```bash
cd backend && pytest
cd frontend && npm run test
```
5. Сделайте коммит и push
6. Откройте Pull Request
## Code Style
- **Python**: PEP 8, используйте `black` + `ruff`
- **Svelte**: Svelte 5 Runes, Tailwind CSS
- **Коммиты**: пишите на русском или английском, описывайте суть изменений
## Лицензия
Внося contribution, вы соглашаетесь, что ваш код будет распространяться под [MIT License](LICENSE).