Skip to content

Commit b4fae6a

Browse files
Allow and document new options introduced in jekyll-sass-converter 3.1.0 (SchemaStore#4686)
* Add sass.silence_deprecations configuration option * Add sass.fatal_deprecations & sass.future_deprecations configuration options * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
1 parent ea9e65b commit b4fae6a

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

src/schemas/json/jekyll.json

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -927,6 +927,36 @@
927927
},
928928
"default": []
929929
},
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": {
941+
"description": "An array of active deprecations to ignore.\nhttps://github.com/jekyll/jekyll-sass-converter#configuration-options",
942+
"type": "array",
943+
"uniqueItems": true,
944+
"items": {
945+
"type": "string",
946+
"minLength": 1
947+
},
948+
"default": []
949+
},
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+
},
930960
"sourcemap": {
931961
"description": "Control when source maps shall be generated\nhttps://github.com/jekyll/jekyll-sass-converter#configuration-options",
932962
"type": "string",

0 commit comments

Comments
 (0)