Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2,786 changes: 2,494 additions & 292 deletions client/package-lock.json

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@
"vscode": "^1.100.0"
},
"dependencies": {
"@microsoft/powerquery-language-services": "^0.11.1",
"@microsoft/powerquery-parser": "^0.18.1",
"@microsoft/powerquery-language-services": "^0.11.9",
"@microsoft/powerquery-parser": "^0.18.5",
"vscode-languageclient": "^9.0.1"
},
"devDependencies": {
Expand All @@ -47,7 +47,7 @@
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-security": "^3.0.1",
"mocha": "^10.8.2",
"mocha": "^7.2.0",
"mocha-junit-reporter": "^2.2.1",
"mocha-multi-reporters": "^1.5.1",
"npm-check-updates": "^18.1.0",
Expand Down
57 changes: 31 additions & 26 deletions language-configuration.json
Original file line number Diff line number Diff line change
@@ -1,28 +1,33 @@
{
"comments": {
// symbol used for single line comment
"lineComment": "//",
// symbols used for start and end a block comment
"blockComment": ["/*", "*/"]
},
// symbols used as brackets
"brackets": [["{", "}"], ["[", "]"], ["(", ")"]],
// symbols that are auto closed when typing
"autoClosingPairs": [
["{", "}"],
["[", "]"],
["(", ")"],
["\"", "\""],
["'", "'"]
],
// symbols that that can be used to surround a selection
"surroundingPairs": [
["{", "}"],
["[", "]"],
["(", ")"],
["\"", "\""],
["'", "'"]
],
// (built-in identifier)|(quoted identifier)|(each record field)|(number.float)|(number.hex)|(number)|(identifier)
"wordPattern": "(#\\w+)|(#\".+?\")|(_?\\[\\w+\\])|(-?\\d*\\.\\d+(?:[eE][\\-+]?\\d+)?)|(-?0[xX][0-9a-fA-F]+)|(-?\\d+(?:[eE][\\-+]?\\d+)?)|([^\\[\\]\\`\\~\\!\\@\\%\\^\\&\\*\\(\\)\\-\\=\\+\\{\\}\\\\\\|\\;\\:\\'\\\"\\,\\<\\>\\/\\?\\s]+)"
"comments": {
// symbol used for single line comment
"lineComment": "//",
// symbols used for start and end a block comment
"blockComment": ["/*", "*/"]
},
// symbols used as brackets
"brackets": [
["{", "}"],
["[", "]"],
["(", ")"]
],
// symbols that are auto closed when typing
"autoClosingPairs": [
["{", "}"],
["[", "]"],
["(", ")"],
["\"", "\""],
["'", "'"]
],
// symbols that that can be used to surround a selection
"surroundingPairs": [
["{", "}"],
["[", "]"],
["(", ")"],
["\"", "\""],
["'", "'"]
],
// If you change this pattern also change it in PowerQuery\Web's MLanguage.ts
// (built-in identifier)|(quoted identifier)|(each record field)|(number.float)|(number.hex)|(number)|(identifier)
"wordPattern": "(#\\w+)|(#\".+?\")|(_?\\[\\w+\\])|(-?\\d*\\.\\d+(?:[eE][\\-+]?\\d+)?)|(-?0[xX][0-9a-fA-F]+)|(-?\\d+(?:[eE][\\-+]?\\d+)?)|([^\\[\\]\\`\\~\\!\\@\\%\\^\\&\\*\\(\\)\\-\\=\\+\\{\\}\\\\\\|\\;\\:\\'\\\"\\,\\<\\>\\/\\?\\s]+)"
}
44 changes: 22 additions & 22 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading