Skip to content

Commit

Permalink
Merge pull request #1021 from pjkaufman/master
Browse files Browse the repository at this point in the history
Fix Dedepe and Sort not Running
  • Loading branch information
pjkaufman authored Feb 26, 2024
2 parents b0e4884 + d15c1f9 commit 74f6f48
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"id": "obsidian-linter",
"name": "Linter",
"version": "1.23.0",
"version": "1.23.1",
"minAppVersion": "1.4.16",
"description": "Formats and styles your notes. It can be used to format YAML tags, aliases, arrays, and metadata; footnotes; headings; spacing; math blocks; regular markdown contents like list, italics, and bold styles; and more with the use of custom rule options as well.",
"author": "Victor Tao",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "obsidian-linter",
"version": "1.23.0",
"version": "1.23.1",
"description": "Enforces consistent markdown styling for Obsidian (https://obsidian.md). It can be used to format YAML tags, aliases, arrays, and metadata; footnotes; headings; spacing; math blocks; regular markdown contents like list, italics, and bold styles; and more with the use of custom rule options as well.",
"main": "main.js",
"scripts": {
Expand Down
1 change: 0 additions & 1 deletion src/rules/dedupe-yaml-array-values.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ export default class RuleTemplate extends RuleBuilder<DedupeYamlArrayValuesOptio
nameKey: 'rules.dedupe-yaml-array-values.name',
descriptionKey: 'rules.dedupe-yaml-array-values.description',
type: RuleType.YAML,
hasSpecialExecutionOrder: true,
});
}
get OptionsClass(): new () => DedupeYamlArrayValuesOptions {
Expand Down
1 change: 0 additions & 1 deletion src/rules/sort-yaml-array-values.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@ export default class RuleTemplate extends RuleBuilder<SortYamlArrayValuesOptions
nameKey: 'rules.sort-yaml-array-values.name',
descriptionKey: 'rules.sort-yaml-array-values.description',
type: RuleType.YAML,
hasSpecialExecutionOrder: true,
});
}
get OptionsClass(): new () => SortYamlArrayValuesOptions {
Expand Down
3 changes: 2 additions & 1 deletion versions.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
{
"1.23.1": "1.4.16",
"1.23.0": "1.4.16",
"1.22.0": "1.4.16",
"1.21.0": "1.4.16",
Expand Down

0 comments on commit 74f6f48

Please sign in to comment.