New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@codingame/monaco-vscode-languages-service-override

Package Overview
Dependencies
Maintainers
0
Versions
144
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@codingame/monaco-vscode-languages-service-override - npm Package Compare versions

Comparing version 11.1.0 to 11.1.1

6

package.json
{
"name": "@codingame/monaco-vscode-languages-service-override",
"version": "11.1.0",
"version": "11.1.1",
"keywords": [],

@@ -29,5 +29,5 @@ "author": {

"dependencies": {
"vscode": "npm:@codingame/monaco-vscode-api@11.1.0",
"@codingame/monaco-vscode-files-service-override": "11.1.0"
"vscode": "npm:@codingame/monaco-vscode-api@11.1.1",
"@codingame/monaco-vscode-files-service-override": "11.1.1"
}
}

@@ -72,3 +72,3 @@ import { __decorate, __param } from 'vscode/external/tslib/tslib.es6.js';

console.error(( localize(
2426,
2033,
"Errors parsing {0}: {1}",

@@ -81,3 +81,3 @@ (configFileLocation.toString()),

console.error(( localize(
2427,
2034,
"{0}: Invalid format, JSON object expected.",

@@ -444,7 +444,7 @@ (configFileLocation.toString())

type: 'string',
description: ( localize(2428, 'The opening bracket character or string sequence.'))
description: ( localize(2035, 'The opening bracket character or string sequence.'))
},
closeBracket: {
type: 'string',
description: ( localize(2429, 'The closing bracket character or string sequence.'))
description: ( localize(2036, 'The closing bracket character or string sequence.'))
},

@@ -466,3 +466,3 @@ bracketPair: {

},
description: ( localize(2430, 'Defines the comment symbols')),
description: ( localize(2037, 'Defines the comment symbols')),
type: 'object',

@@ -472,9 +472,9 @@ properties: {

type: 'array',
description: ( localize(2431, 'Defines how block comments are marked.')),
description: ( localize(2038, 'Defines how block comments are marked.')),
items: [{
type: 'string',
description: ( localize(2432, 'The character sequence that starts a block comment.'))
description: ( localize(2039, 'The character sequence that starts a block comment.'))
}, {
type: 'string',
description: ( localize(2433, 'The character sequence that ends a block comment.'))
description: ( localize(2040, 'The character sequence that ends a block comment.'))
}]

@@ -484,3 +484,3 @@ },

type: 'string',
description: ( localize(2434, 'The character sequence that starts a line comment.'))
description: ( localize(2041, 'The character sequence that starts a line comment.'))
}

@@ -492,3 +492,3 @@ }

markdownDescription: ( localize(
2435,
2042,
'Defines the bracket symbols that increase or decrease the indentation. When bracket pair colorization is enabled and {0} is not defined, this also defines the bracket pairs that are colorized by their nesting level.',

@@ -505,3 +505,3 @@ '\`colorizedBracketPairs\`'

markdownDescription: ( localize(
2436,
2043,
'Defines the bracket pairs that are colorized by their nesting level if bracket pair colorization is enabled. Any brackets included here that are not included in {0} will be automatically included in {0}.',

@@ -518,3 +518,3 @@ '\`brackets\`'

description: ( localize(
2437,
2044,
'Defines the bracket pairs. When a opening bracket is entered, the closing bracket is inserted automatically.'

@@ -537,3 +537,3 @@ )),

type: 'array',
description: ( localize(2438, 'Defines a list of scopes where the auto pairs are disabled.')),
description: ( localize(2045, 'Defines a list of scopes where the auto pairs are disabled.')),
items: {

@@ -550,3 +550,3 @@ enum: ['string', 'comment']

description: ( localize(
2439,
2046,
'Defines what characters must be after the cursor in order for bracket or quote autoclosing to occur when using the \'languageDefined\' autoclosing setting. This is typically the set of characters which can not start an expression.'

@@ -559,3 +559,3 @@ )),

description: ( localize(
2440,
2047,
'Defines the bracket pairs that can be used to surround a selected string.'

@@ -583,3 +583,3 @@ )),

description: ( localize(
2441,
2048,
'Defines what is considered to be a word in the programming language.'

@@ -591,3 +591,3 @@ )),

type: 'string',
description: ( localize(2442, 'The RegExp pattern used to match words.')),
description: ( localize(2049, 'The RegExp pattern used to match words.')),
default: '',

@@ -597,6 +597,6 @@ },

type: 'string',
description: ( localize(2443, 'The RegExp flags used to match words.')),
description: ( localize(2050, 'The RegExp flags used to match words.')),
default: 'g',
pattern: '^([gimuy]+)$',
patternErrorMessage: ( localize(2444, 'Must match the pattern `/^([gimuy]+)$/`.'))
patternErrorMessage: ( localize(2051, 'Must match the pattern `/^([gimuy]+)$/`.'))
}

@@ -610,3 +610,3 @@ }

},
description: ( localize(2445, 'The language\'s indentation settings.')),
description: ( localize(2052, 'The language\'s indentation settings.')),
type: 'object',

@@ -617,3 +617,3 @@ properties: {

description: ( localize(
2446,
2053,
'If a line matches this pattern, then all the lines after it should be indented once (until another rule matches).'

@@ -624,3 +624,3 @@ )),

type: 'string',
description: ( localize(2447, 'The RegExp pattern for increaseIndentPattern.')),
description: ( localize(2054, 'The RegExp pattern for increaseIndentPattern.')),
default: '',

@@ -630,6 +630,6 @@ },

type: 'string',
description: ( localize(2448, 'The RegExp flags for increaseIndentPattern.')),
description: ( localize(2055, 'The RegExp flags for increaseIndentPattern.')),
default: '',
pattern: '^([gimuy]+)$',
patternErrorMessage: ( localize(2449, 'Must match the pattern `/^([gimuy]+)$/`.'))
patternErrorMessage: ( localize(2056, 'Must match the pattern `/^([gimuy]+)$/`.'))
}

@@ -641,3 +641,3 @@ }

description: ( localize(
2450,
2057,
'If a line matches this pattern, then all the lines after it should be unindented once (until another rule matches).'

@@ -648,3 +648,3 @@ )),

type: 'string',
description: ( localize(2451, 'The RegExp pattern for decreaseIndentPattern.')),
description: ( localize(2058, 'The RegExp pattern for decreaseIndentPattern.')),
default: '',

@@ -654,6 +654,6 @@ },

type: 'string',
description: ( localize(2452, 'The RegExp flags for decreaseIndentPattern.')),
description: ( localize(2059, 'The RegExp flags for decreaseIndentPattern.')),
default: '',
pattern: '^([gimuy]+)$',
patternErrorMessage: ( localize(2453, 'Must match the pattern `/^([gimuy]+)$/`.'))
patternErrorMessage: ( localize(2060, 'Must match the pattern `/^([gimuy]+)$/`.'))
}

@@ -665,3 +665,3 @@ }

description: ( localize(
2454,
2061,
'If a line matches this pattern, then **only the next line** after it should be indented once.'

@@ -672,3 +672,3 @@ )),

type: 'string',
description: ( localize(2455, 'The RegExp pattern for indentNextLinePattern.')),
description: ( localize(2062, 'The RegExp pattern for indentNextLinePattern.')),
default: '',

@@ -678,6 +678,6 @@ },

type: 'string',
description: ( localize(2456, 'The RegExp flags for indentNextLinePattern.')),
description: ( localize(2063, 'The RegExp flags for indentNextLinePattern.')),
default: '',
pattern: '^([gimuy]+)$',
patternErrorMessage: ( localize(2457, 'Must match the pattern `/^([gimuy]+)$/`.'))
patternErrorMessage: ( localize(2064, 'Must match the pattern `/^([gimuy]+)$/`.'))
}

@@ -689,3 +689,3 @@ }

description: ( localize(
2458,
2065,
'If a line matches this pattern, then its indentation should not be changed and it should not be evaluated against the other rules.'

@@ -696,3 +696,3 @@ )),

type: 'string',
description: ( localize(2459, 'The RegExp pattern for unIndentedLinePattern.')),
description: ( localize(2066, 'The RegExp pattern for unIndentedLinePattern.')),
default: '',

@@ -702,6 +702,6 @@ },

type: 'string',
description: ( localize(2460, 'The RegExp flags for unIndentedLinePattern.')),
description: ( localize(2067, 'The RegExp flags for unIndentedLinePattern.')),
default: '',
pattern: '^([gimuy]+)$',
patternErrorMessage: ( localize(2461, 'Must match the pattern `/^([gimuy]+)$/`.'))
patternErrorMessage: ( localize(2068, 'Must match the pattern `/^([gimuy]+)$/`.'))
}

@@ -714,3 +714,3 @@ }

type: 'object',
description: ( localize(2462, 'The language\'s folding settings.')),
description: ( localize(2069, 'The language\'s folding settings.')),
properties: {

@@ -720,3 +720,3 @@ offSide: {

description: ( localize(
2463,
2070,
'A language adheres to the off-side rule if blocks in that language are expressed by their indentation. If set, empty lines belong to the subsequent block.'

@@ -728,3 +728,3 @@ )),

description: ( localize(
2464,
2071,
'Language specific folding markers such as \'#region\' and \'#endregion\'. The start and end regexes will be tested against the contents of all lines and must be designed efficiently'

@@ -736,3 +736,3 @@ )),

description: ( localize(
2465,
2072,
'The RegExp pattern for the start marker. The regexp must start with \'^\'.'

@@ -744,3 +744,3 @@ ))

description: ( localize(
2466,
2073,
'The RegExp pattern for the end marker. The regexp must start with \'^\'.'

@@ -755,6 +755,6 @@ ))

type: 'array',
description: ( localize(2467, 'The language\'s rules to be evaluated when pressing Enter.')),
description: ( localize(2074, 'The language\'s rules to be evaluated when pressing Enter.')),
items: {
type: 'object',
description: ( localize(2467, 'The language\'s rules to be evaluated when pressing Enter.')),
description: ( localize(2074, 'The language\'s rules to be evaluated when pressing Enter.')),
required: ['beforeText', 'action'],

@@ -765,3 +765,3 @@ properties: {

description: ( localize(
2468,
2075,
'This rule will only execute if the text before the cursor matches this regular expression.'

@@ -772,3 +772,3 @@ )),

type: 'string',
description: ( localize(2469, 'The RegExp pattern for beforeText.')),
description: ( localize(2076, 'The RegExp pattern for beforeText.')),
default: '',

@@ -778,6 +778,6 @@ },

type: 'string',
description: ( localize(2470, 'The RegExp flags for beforeText.')),
description: ( localize(2077, 'The RegExp flags for beforeText.')),
default: '',
pattern: '^([gimuy]+)$',
patternErrorMessage: ( localize(2471, 'Must match the pattern `/^([gimuy]+)$/`.'))
patternErrorMessage: ( localize(2078, 'Must match the pattern `/^([gimuy]+)$/`.'))
}

@@ -789,3 +789,3 @@ }

description: ( localize(
2472,
2079,
'This rule will only execute if the text after the cursor matches this regular expression.'

@@ -796,3 +796,3 @@ )),

type: 'string',
description: ( localize(2473, 'The RegExp pattern for afterText.')),
description: ( localize(2080, 'The RegExp pattern for afterText.')),
default: '',

@@ -802,6 +802,6 @@ },

type: 'string',
description: ( localize(2474, 'The RegExp flags for afterText.')),
description: ( localize(2081, 'The RegExp flags for afterText.')),
default: '',
pattern: '^([gimuy]+)$',
patternErrorMessage: ( localize(2475, 'Must match the pattern `/^([gimuy]+)$/`.'))
patternErrorMessage: ( localize(2082, 'Must match the pattern `/^([gimuy]+)$/`.'))
}

@@ -813,3 +813,3 @@ }

description: ( localize(
2476,
2083,
'This rule will only execute if the text above the line matches this regular expression.'

@@ -820,3 +820,3 @@ )),

type: 'string',
description: ( localize(2477, 'The RegExp pattern for previousLineText.')),
description: ( localize(2084, 'The RegExp pattern for previousLineText.')),
default: '',

@@ -826,6 +826,6 @@ },

type: 'string',
description: ( localize(2478, 'The RegExp flags for previousLineText.')),
description: ( localize(2085, 'The RegExp flags for previousLineText.')),
default: '',
pattern: '^([gimuy]+)$',
patternErrorMessage: ( localize(2479, 'Must match the pattern `/^([gimuy]+)$/`.'))
patternErrorMessage: ( localize(2086, 'Must match the pattern `/^([gimuy]+)$/`.'))
}

@@ -836,3 +836,3 @@ }

type: ['string', 'object'],
description: ( localize(2480, 'The action to execute.')),
description: ( localize(2087, 'The action to execute.')),
required: ['indent'],

@@ -843,17 +843,17 @@ default: { 'indent': 'indent' },

type: 'string',
description: ( localize(2481, "Describe what to do with the indentation")),
description: ( localize(2088, "Describe what to do with the indentation")),
default: 'indent',
enum: ['none', 'indent', 'indentOutdent', 'outdent'],
markdownEnumDescriptions: [
( localize(2482, "Insert new line and copy the previous line's indentation.")),
( localize(2089, "Insert new line and copy the previous line's indentation.")),
( localize(
2483,
2090,
"Insert new line and indent once (relative to the previous line's indentation)."
)),
( localize(
2484,
2091,
"Insert two new lines:\n - the first one indented which will hold the cursor\n - the second one at the same indentation level"
)),
( localize(
2485,
2092,
"Insert new line and outdent once (relative to the previous line's indentation)."

@@ -866,3 +866,3 @@ ))

description: ( localize(
2486,
2093,
'Describes text to be appended after the new line and after the indentation.'

@@ -875,3 +875,3 @@ )),

description: ( localize(
2487,
2094,
'Describes the number of characters to remove from the new line\'s indentation.'

@@ -878,0 +878,0 @@ )),

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc