Skip to content

Commit ce28828

Browse files
committed
package.json: eliminates the config properties deprecated at v3 one year ago.
1 parent e72364e commit ce28828

File tree

1 file changed

+0
-22
lines changed

1 file changed

+0
-22
lines changed

package.json

Lines changed: 0 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,6 @@
3434
"scope": "window",
3535
"type": "string"
3636
},
37-
"dim.defaultMaxLinesBetween": {
38-
"deprecated": true,
39-
"description": "This property is deprecated. If desired, regex quantifiers (such as `{0,n}`) can be considered instead.",
40-
"type": "number"
41-
},
4237
"dim.defaultOpacityTier": {
4338
"default": "mid",
4439
"description": "The default opacity will be assumed for rules that doesn't specify. Overridable in rules.",
@@ -50,20 +45,11 @@
5045
"scope": "window",
5146
"type": "string"
5247
},
53-
"dim.defaultScanLimit": {
54-
"deprecated": true,
55-
"description": "This property is deprecated. Dim now scans only the first 2000 lines of document.",
56-
"type": "number"
57-
},
5848
"dim.rules": {
5949
"default": [],
6050
"description": "List of rules that will be used by dim to decide which part of code will be dimmed.",
6151
"items": {
6252
"properties": {
63-
"end": {
64-
"deprecated": true,
65-
"description": "This property is deprecated. Please migrate to using \"pattern\" property. Consider the use of \"s\" flag for block dimming rules to make dots match newlines. "
66-
},
6753
"flags": {
6854
"default": "g",
6955
"description": "Flag suffix that will be used for generating the regex for given pattern. Dim sets \"g\" flag by default which matches all instances (rather than the first) of pattern. Consider adding \"s\" for block dimming rules which makes the dot match with newlines. Don't use a separator between flags. Eg. \"gs\"",
@@ -80,14 +66,6 @@
8066
"pattern": {
8167
"description": "The pattern that will be used to generate regex. Don't forget proper escaping. Eg. \"[^\\n]\" means any character other than the new line. For dimming blocks (rather than parts in single line) it is possible to use dot operator for newlines. See the description for \"flags\" property.",
8268
"type": "string"
83-
},
84-
"rule": {
85-
"deprecated": true,
86-
"description": "This property is deprecated. Please migrate to using \"pattern\" property."
87-
},
88-
"start": {
89-
"deprecated": true,
90-
"description": "This property is deprecated. Please migrate to using \"pattern\" property. Consider the use of \"s\" flag for block dimming rules to make dots match newlines. "
9169
}
9270
},
9371
"required": [

0 commit comments

Comments
 (0)