Skip to content

Contributing

Snifer edited this page Apr 11, 2026 · 1 revision

Contributing

🇬🇧 English | Español → Contribuir

Thank you for your interest in contributing to LoneLog!


How to Contribute

Reporting Bugs

  1. Check if the issue already exists in the Issues tab.
  2. If not, open a new issue with:
    • A clear title.
    • Steps to reproduce.
    • Expected vs actual behavior.
    • Obsidian version and OS.

Suggesting Features

  • Open an issue with the enhancement label.
  • Describe the use case and the expected behavior.

Submitting Code

  1. Fork the repository.
  2. Create a branch from dev:
    git checkout -b feat/your-feature dev
  3. Make your changes.
  4. Commit following this format:
    type: short description
    
    Closes #N
    
  5. Open a Pull Request targeting the dev branch.

Branch Target

All PRs must target the dev branch, not main.


Commit Types

Type Use for
feat New features
fix Bug fixes
docs Documentation changes
chore Maintenance tasks
refactor Code restructuring

Back to Home

Clone this wiki locally