Skip to content

Commit

Permalink
🩹 lint; issue template update
Browse files Browse the repository at this point in the history
  • Loading branch information
ebullient committed Oct 29, 2024
1 parent 1f1c3e4 commit d68a5d3
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 24 deletions.
21 changes: 2 additions & 19 deletions .github/ISSUE_TEMPLATE/bug-report.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,23 +13,6 @@ body:
- Look at existing bug reports to see if your issue has already been reported.
- Is this actually a bug? If this is something that you wish the plugin could do, please submit a feature request instead.
- type: textarea
id: input-data
attributes:
label: Input data (markdown source)
description: |
Include a sample markdown snippet that triggers the issue. Use backticks to format the code snippet.
- ⚠️ Don't include personal or sensitive information
- 🚀 Use the Obsidian sandbox vault + this plugin and that snippet to ensure the issue is reproducible.
placeholder: |
I am trying to use this markdown to ...
```markdown
```
validations:
required: true

- type: textarea
id: expected
attributes:
Expand Down Expand Up @@ -86,9 +69,9 @@ body:
required: true

- type: input
id: tasks-version
id: plugin-version
attributes:
label: Tasks Plugin Version
label: Plugin Version
description: Which plugin version are you using?
placeholder: 1.11.0
validations:
Expand Down
11 changes: 6 additions & 5 deletions src/whitespace-Plugin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,16 @@ export const DEFAULT_SETTINGS: SWSettings = {
patch: 0,
},
disablePluginStyles: false,
enabled: true,
outlineListMarkers: false,
showAllCodeblockWhitespace: false,
showAllWhitespace: false,
showBlockquoteMarkers: false,
showFrontmatterWhitespace: true,
showCodeblockWhitespace: false,
showExtraWhitespace: false,
showFrontmatterWhitespace: true,
showLineEndings: true,
showTableWhitespace: true,
showCodeblockWhitespace: false,
showAllWhitespace: false,
outlineListMarkers: false,
enabled: true,
};

export class ShowWhitespacePlugin extends Plugin {
Expand Down

0 comments on commit d68a5d3

Please sign in to comment.