Skip to content

Commit

Permalink
Added in a check for theme block settings validation
Browse files Browse the repository at this point in the history
  • Loading branch information
AribaRajput committed Dec 2, 2024
1 parent e61fa07 commit 00fbe01
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 0 deletions.
Empty file.
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
import { AugmentedDependencies, CheckNodeMethod, LiquidCheckDefinition, LiquidHtmlNode, LiquidHtmlNodeTypes, RelativePath, Schema, Settings, Severity, SourceCodeType, StringCorrector, UriString, ValidateJSON } from "../..";

export const PresetsKeyMatches: LiquidCheckDefinition = {
meta: {
name: "PresetsKeyMatches",
code: "PresetsKeyMatches",
severity: Severity.ERROR,
type: SourceCodeType.LiquidHtml,
docs: {
description: "",
recommended: undefined,
url: undefined
},
schema: {},
targets: [],
},

create(context){
return{
async Document(node){
debugger;
}
}
}
}

0 comments on commit 00fbe01

Please sign in to comment.