Skip to content

Commit 00fbe01

Browse files
committed
Added in a check for theme block settings validation
1 parent e61fa07 commit 00fbe01

File tree

2 files changed

+25
-0
lines changed

2 files changed

+25
-0
lines changed

packages/theme-check-common/src/checks/presets-key-matches/index.spec.ts

Whitespace-only changes.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
import { AugmentedDependencies, CheckNodeMethod, LiquidCheckDefinition, LiquidHtmlNode, LiquidHtmlNodeTypes, RelativePath, Schema, Settings, Severity, SourceCodeType, StringCorrector, UriString, ValidateJSON } from "../..";
2+
3+
export const PresetsKeyMatches: LiquidCheckDefinition = {
4+
meta: {
5+
name: "PresetsKeyMatches",
6+
code: "PresetsKeyMatches",
7+
severity: Severity.ERROR,
8+
type: SourceCodeType.LiquidHtml,
9+
docs: {
10+
description: "",
11+
recommended: undefined,
12+
url: undefined
13+
},
14+
schema: {},
15+
targets: [],
16+
},
17+
18+
create(context){
19+
return{
20+
async Document(node){
21+
debugger;
22+
}
23+
}
24+
}
25+
}

0 commit comments

Comments
 (0)