You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: editors/vscode/package.json
+32Lines changed: 32 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -46,6 +46,38 @@
46
46
"type": "string",
47
47
"default": "",
48
48
"description": "Specifies an absolute path to the directory used to store samples and module data. Used only for local YARI. (example: /home/user/samples)"
49
+
},
50
+
"yls.snippets.metaEntries": {
51
+
"type": "object",
52
+
"default": {},
53
+
"description": "A set of metadata entries to insert into rules. Empty values will create meta keys with a tabstop, and built-in variables are accepted (though transforms are ignored).",
54
+
"maxProperties": 50,
55
+
"additionalProperties": true
56
+
},
57
+
"yls.snippets.sortMeta": {
58
+
"type": "boolean",
59
+
"default": true,
60
+
"description": "Sort the metadata entries in alphabetical order by keys. Otherwise, insert keys as listed."
61
+
},
62
+
"yls.snippets.condition": {
63
+
"type": "boolean",
64
+
"default": true,
65
+
"description": "Enable the condition snippet on YARA rules. Has no effect on the presence of the condition section in the rule snippet."
66
+
},
67
+
"yls.snippets.meta": {
68
+
"type": "boolean",
69
+
"default": true,
70
+
"description": "Enable the meta snippet on YARA rules. Has no effect on the presence of the meta section in the rule snippet."
71
+
},
72
+
"yls.snippets.rule": {
73
+
"type": "boolean",
74
+
"default": true,
75
+
"description": "Enable the rule skeleton snippet on YARA rules. Settings for other snippets do not affect the sections provided in this snippet."
76
+
},
77
+
"yls.snippets.strings": {
78
+
"type": "boolean",
79
+
"default": true,
80
+
"description": "Enable the strings snippet on YARA rules. Has no effect on the presence of the strings section in the rule snippet."
0 commit comments