mirror of
https://github.com/gapmiss/blur.git
synced 2026-07-22 07:50:29 +00:00
25 lines
451 B
Markdown
25 lines
451 B
Markdown
|
|
# 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
|
||
|
|
```
|