mirror of
https://github.com/ohm-engineering/obsidian-csharp-interactive.git
synced 2026-07-22 07:24:31 +00:00
28 lines
603 B
Markdown
28 lines
603 B
Markdown
# Contributing
|
|
|
|
Thanks for contributing to C# Snippet Runner.
|
|
|
|
## Development setup
|
|
|
|
1. Install Node.js
|
|
2. Install dependencies:
|
|
- `npm install`
|
|
3. Start dev build/watch:
|
|
- `npm run dev`
|
|
|
|
## Code quality checks
|
|
|
|
Before submitting a change, run:
|
|
|
|
- `npm run lint`
|
|
- `npm run build`
|
|
|
|
### Testing
|
|
Test your changes before submitting a pull request. Make sure to use the version of Obsidian specified in the `manifest.json` for compatibility.
|
|
|
|
## Pull request guidelines
|
|
|
|
- Keep changes focused and minimal.
|
|
- Follow existing code style and patterns.
|
|
- Include a description of what changed and why.
|
|
|