Skip to content

Commit a1d0a0d

Browse files
authored
Add sass.fatal_deprecations & sass.future_deprecations configuration options
1 parent 9f42a70 commit a1d0a0d

File tree

1 file changed

+21
-1
lines changed

1 file changed

+21
-1
lines changed

src/schemas/json/jekyll.json

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -927,7 +927,17 @@
927927
},
928928
"default": []
929929
},
930-
"silence_deprecations": {
930+
"fatal_deprecations": {
931+
"description": "An array of deprecations or versions to treat as fatal.\nhttps://github.com/jekyll/jekyll-sass-converter#configuration-options",
932+
"type": "array",
933+
"uniqueItems": true,
934+
"items": {
935+
"type": "string",
936+
"minLength": 1
937+
},
938+
"default": []
939+
},
940+
"future_deprecations": {
931941
"description": "An array of active deprecations to ignore.\nhttps://github.com/jekyll/jekyll-sass-converter#configuration-options",
932942
"type": "array",
933943
"uniqueItems": true,
@@ -937,6 +947,16 @@
937947
},
938948
"default": []
939949
},
950+
"silence_deprecations": {
951+
"description": "An array of future deprecations to opt into early.\nhttps://github.com/jekyll/jekyll-sass-converter#configuration-options",
952+
"type": "array",
953+
"uniqueItems": true,
954+
"items": {
955+
"type": "string",
956+
"minLength": 1
957+
},
958+
"default": []
959+
},
940960
"sourcemap": {
941961
"description": "Control when source maps shall be generated\nhttps://github.com/jekyll/jekyll-sass-converter#configuration-options",
942962
"type": "string",

0 commit comments

Comments
 (0)