Skip to content

Commit

Permalink
v1.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
phoenisx committed Jul 27, 2022
1 parent c1a5678 commit 20f458a
Showing 1 changed file with 41 additions and 11 deletions.
52 changes: 41 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"intellisense"
],
"description": "Intellisense support for CSS Variables",
"version": "1.7.0",
"version": "1.7.1",
"publisher": "phoenisx",
"license": "MIT",
"homepage": "https://github.com/willofindie/vscode-cssvar",
Expand Down Expand Up @@ -52,7 +52,10 @@
"title": "CSS Variables",
"properties": {
"cssvar.files": {
"type": ["array", "null"],
"type": [
"array",
"null"
],
"default": null,
"items": {
"type": "string"
Expand All @@ -67,7 +70,10 @@
]
},
"cssvar.ignore": {
"type": ["array", "null"],
"type": [
"array",
"null"
],
"default": null,
"items": {
"type": "string"
Expand All @@ -82,7 +88,10 @@
]
},
"cssvar.extensions": {
"type": ["array", "null"],
"type": [
"array",
"null"
],
"default": null,
"items": {
"type": "string",
Expand Down Expand Up @@ -113,7 +122,10 @@
]
},
"cssvar.themes": {
"type": ["array", "null"],
"type": [
"array",
"null"
],
"default": null,
"items": {
"type": "string"
Expand All @@ -128,7 +140,10 @@
]
},
"cssvar.excludeThemedVariables": {
"type": ["boolean", "null"],
"type": [
"boolean",
"null"
],
"default": null,
"markdownDescription": "Exclude themed variables to remove unnecessary duplicates",
"scope": "resource",
Expand All @@ -138,7 +153,10 @@
]
},
"cssvar.disableSort": {
"type": ["boolean", "null"],
"type": [
"boolean",
"null"
],
"default": null,
"markdownDescription": "Disables default sorting applied by VSCode",
"scope": "window",
Expand All @@ -148,7 +166,10 @@
]
},
"cssvar.enableColors": {
"type": ["boolean", "null"],
"type": [
"boolean",
"null"
],
"default": null,
"markdownDescription": "Enable VScode's Color Representation feature when true",
"scope": "window",
Expand All @@ -158,7 +179,10 @@
]
},
"cssvar.enableGotoDef": {
"type": ["boolean", "null"],
"type": [
"boolean",
"null"
],
"default": null,
"markdownDescription": "Enable VScode's Goto Definition feature for CSS Variables",
"scope": "window",
Expand All @@ -168,7 +192,10 @@
]
},
"cssvar.postcssPlugins": {
"type": ["array", "null"],
"type": [
"array",
"null"
],
"default": null,
"items": {
"type": "string"
Expand All @@ -183,7 +210,10 @@
]
},
"cssvar.postcssSyntax": {
"type": ["array", "null"],
"type": [
"array",
"null"
],
"default": null,
"items": {
"type": "string"
Expand Down

0 comments on commit 20f458a

Please sign in to comment.