docs: add CONTRIBUTING guide

This commit is contained in:
@gapmiss 2026-05-31 14:18:49 -05:00
parent 6d3a4a037f
commit 46d3f31cae
2 changed files with 24 additions and 2 deletions

2
.gitignore vendored
View file

@ -1,5 +1,3 @@
.hotreload
# Dependency directories
node_modules/

24
CONTRIBUTING.md Normal file
View file

@ -0,0 +1,24 @@
# Contributing
Thanks for your interest in contributing!
## Bug reports
Open an issue with steps to reproduce and expected vs actual behavior.
## Pull requests
1. Fork the repository
2. Create a feature branch
3. Make your changes
4. Run `npm run build` and `npx eslint .` to verify
5. Test in Obsidian
6. Submit a PR with a clear description
## Development
```bash
npm install
npm run dev # Watch mode
npm run build # Production build
```