├── .github ├── .copilot.instructions.md ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ └── pr-gated.yml ├── .gitignore ├── .prettierrc ├── .vscode ├── extensions.json ├── launch.json ├── settings.json └── tasks.json ├── .vscodeignore ├── LICENSE ├── README.md ├── SECURITY.md ├── client ├── .vscode-test.js ├── .vscode │ └── extensions.json ├── package-lock.json ├── package.json ├── src │ ├── commands.ts │ ├── constants.ts │ ├── dataflowModel.ts │ ├── extension.ts │ ├── funcUtils.ts │ ├── librarySymbolClient.ts │ ├── librarySymbolManager.ts │ ├── librarySymbolUtils.ts │ ├── powerQueryApi.ts │ ├── subscriptions │ │ ├── documentSemanticTokensProvider.ts │ │ └── index.ts │ └── test │ │ ├── suite │ │ ├── completion.test.ts │ │ ├── completionUtils.ts │ │ ├── dataflowExtractCommand.test.ts │ │ ├── diagnostics.test.ts │ │ ├── documentSymbolUtils.ts │ │ ├── documentSymbols.test.ts │ │ ├── encodingCommands.test.ts │ │ ├── extension.test.ts │ │ ├── librarySymbolManager.test.ts │ │ ├── librarySymbolUtils.test.ts │ │ ├── sectionCompletion.test.ts │ │ └── testUtils.ts │ │ └── testFixture │ │ ├── .vscode │ │ └── settings.json │ │ ├── Diagnostics.ExternalLibrarySymbol.pq │ │ ├── Diagnostics.NoErrors.pq │ │ ├── Diagnostics.TableIsEmpty.Error.pq │ │ ├── DocumentSymbols.pq │ │ ├── ExtensionTest.json │ │ ├── completion.pq │ │ ├── dataflow.json │ │ ├── diagnostics.pq │ │ └── section.pq ├── tsconfig.json ├── tsconfig.webpack.json └── webpack.config.js ├── eslint.config.mjs ├── imgs ├── PQIcon_256.png ├── formatDocument.gif ├── fuzzyAutocomplete.gif ├── hover.png ├── jsonDecodeEncode.png └── parameterHints.png ├── language-configuration.json ├── package.json ├── scripts ├── package-lock.json ├── package.json ├── readme.md ├── src │ └── benchmarkFile.ts └── tsconfig.json ├── server ├── .mocharc.json ├── .vscode │ └── extensions.json ├── mochaReporterConfig.json ├── package-lock.json ├── package.json ├── src │ ├── cancellationToken │ │ ├── cancellationTokenAdapter.ts │ │ ├── cancellationTokenUtils.ts │ │ └── index.ts │ ├── errorUtils.ts │ ├── eventHandlerUtils.ts │ ├── index.ts │ ├── library │ │ ├── externalLibraryUtils.ts │ │ ├── index.ts │ │ ├── librarySymbolUtils.ts │ │ ├── libraryTypeResolver.ts │ │ ├── libraryUtils.ts │ │ ├── moduleLibraryUtils.ts │ │ ├── sdk │ │ │ └── sdk-enUs.json │ │ └── standard │ │ │ └── standard-enUs.json │ ├── server.ts │ ├── settings │ │ ├── index.ts │ │ ├── settings.ts │ │ └── settingsUtils.ts │ ├── test │ │ ├── errorUtils.test.ts │ │ └── standardLibrary.test.ts │ └── traceManagerUtils.ts ├── tsconfig.json ├── tsconfig.webpack.json └── webpack.config.js ├── syntaxes ├── .prettierrc └── powerquery.tmLanguage.json └── tsconfig.json /.github/.copilot.instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-powerquery/HEAD/.github/.copilot.instructions.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-powerquery/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-powerquery/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/pr-gated.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-powerquery/HEAD/.github/workflows/pr-gated.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-powerquery/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-powerquery/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-powerquery/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-powerquery/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-powerquery/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-powerquery/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-powerquery/HEAD/.vscodeignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-powerquery/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-powerquery/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-powerquery/HEAD/SECURITY.md -------------------------------------------------------------------------------- /client/.vscode-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-powerquery/HEAD/client/.vscode-test.js -------------------------------------------------------------------------------- /client/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-powerquery/HEAD/client/.vscode/extensions.json -------------------------------------------------------------------------------- /client/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-powerquery/HEAD/client/package-lock.json -------------------------------------------------------------------------------- /client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-powerquery/HEAD/client/package.json -------------------------------------------------------------------------------- /client/src/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-powerquery/HEAD/client/src/commands.ts -------------------------------------------------------------------------------- /client/src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-powerquery/HEAD/client/src/constants.ts -------------------------------------------------------------------------------- /client/src/dataflowModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-powerquery/HEAD/client/src/dataflowModel.ts -------------------------------------------------------------------------------- /client/src/extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-powerquery/HEAD/client/src/extension.ts -------------------------------------------------------------------------------- /client/src/funcUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-powerquery/HEAD/client/src/funcUtils.ts -------------------------------------------------------------------------------- /client/src/librarySymbolClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-powerquery/HEAD/client/src/librarySymbolClient.ts -------------------------------------------------------------------------------- /client/src/librarySymbolManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-powerquery/HEAD/client/src/librarySymbolManager.ts -------------------------------------------------------------------------------- /client/src/librarySymbolUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-powerquery/HEAD/client/src/librarySymbolUtils.ts -------------------------------------------------------------------------------- /client/src/powerQueryApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-powerquery/HEAD/client/src/powerQueryApi.ts -------------------------------------------------------------------------------- /client/src/subscriptions/documentSemanticTokensProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-powerquery/HEAD/client/src/subscriptions/documentSemanticTokensProvider.ts -------------------------------------------------------------------------------- /client/src/subscriptions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-powerquery/HEAD/client/src/subscriptions/index.ts -------------------------------------------------------------------------------- /client/src/test/suite/completion.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-powerquery/HEAD/client/src/test/suite/completion.test.ts -------------------------------------------------------------------------------- /client/src/test/suite/completionUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-powerquery/HEAD/client/src/test/suite/completionUtils.ts -------------------------------------------------------------------------------- /client/src/test/suite/dataflowExtractCommand.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-powerquery/HEAD/client/src/test/suite/dataflowExtractCommand.test.ts -------------------------------------------------------------------------------- /client/src/test/suite/diagnostics.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-powerquery/HEAD/client/src/test/suite/diagnostics.test.ts -------------------------------------------------------------------------------- /client/src/test/suite/documentSymbolUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-powerquery/HEAD/client/src/test/suite/documentSymbolUtils.ts -------------------------------------------------------------------------------- /client/src/test/suite/documentSymbols.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-powerquery/HEAD/client/src/test/suite/documentSymbols.test.ts -------------------------------------------------------------------------------- /client/src/test/suite/encodingCommands.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-powerquery/HEAD/client/src/test/suite/encodingCommands.test.ts -------------------------------------------------------------------------------- /client/src/test/suite/extension.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-powerquery/HEAD/client/src/test/suite/extension.test.ts -------------------------------------------------------------------------------- /client/src/test/suite/librarySymbolManager.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-powerquery/HEAD/client/src/test/suite/librarySymbolManager.test.ts -------------------------------------------------------------------------------- /client/src/test/suite/librarySymbolUtils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-powerquery/HEAD/client/src/test/suite/librarySymbolUtils.test.ts -------------------------------------------------------------------------------- /client/src/test/suite/sectionCompletion.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-powerquery/HEAD/client/src/test/suite/sectionCompletion.test.ts -------------------------------------------------------------------------------- /client/src/test/suite/testUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-powerquery/HEAD/client/src/test/suite/testUtils.ts -------------------------------------------------------------------------------- /client/src/test/testFixture/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "git.enabled": false 3 | } 4 | -------------------------------------------------------------------------------- /client/src/test/testFixture/Diagnostics.ExternalLibrarySymbol.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-powerquery/HEAD/client/src/test/testFixture/Diagnostics.ExternalLibrarySymbol.pq -------------------------------------------------------------------------------- /client/src/test/testFixture/Diagnostics.NoErrors.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-powerquery/HEAD/client/src/test/testFixture/Diagnostics.NoErrors.pq -------------------------------------------------------------------------------- /client/src/test/testFixture/Diagnostics.TableIsEmpty.Error.pq: -------------------------------------------------------------------------------- 1 | Table.IsEmpty("abc") -------------------------------------------------------------------------------- /client/src/test/testFixture/DocumentSymbols.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-powerquery/HEAD/client/src/test/testFixture/DocumentSymbols.pq -------------------------------------------------------------------------------- /client/src/test/testFixture/ExtensionTest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-powerquery/HEAD/client/src/test/testFixture/ExtensionTest.json -------------------------------------------------------------------------------- /client/src/test/testFixture/completion.pq: -------------------------------------------------------------------------------- 1 | Access.Dat 2 | -------------------------------------------------------------------------------- /client/src/test/testFixture/dataflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-powerquery/HEAD/client/src/test/testFixture/dataflow.json -------------------------------------------------------------------------------- /client/src/test/testFixture/diagnostics.pq: -------------------------------------------------------------------------------- 1 | let this not be M 2 | -------------------------------------------------------------------------------- /client/src/test/testFixture/section.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-powerquery/HEAD/client/src/test/testFixture/section.pq -------------------------------------------------------------------------------- /client/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-powerquery/HEAD/client/tsconfig.json -------------------------------------------------------------------------------- /client/tsconfig.webpack.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-powerquery/HEAD/client/tsconfig.webpack.json -------------------------------------------------------------------------------- /client/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-powerquery/HEAD/client/webpack.config.js -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-powerquery/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /imgs/PQIcon_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-powerquery/HEAD/imgs/PQIcon_256.png -------------------------------------------------------------------------------- /imgs/formatDocument.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-powerquery/HEAD/imgs/formatDocument.gif -------------------------------------------------------------------------------- /imgs/fuzzyAutocomplete.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-powerquery/HEAD/imgs/fuzzyAutocomplete.gif -------------------------------------------------------------------------------- /imgs/hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-powerquery/HEAD/imgs/hover.png -------------------------------------------------------------------------------- /imgs/jsonDecodeEncode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-powerquery/HEAD/imgs/jsonDecodeEncode.png -------------------------------------------------------------------------------- /imgs/parameterHints.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-powerquery/HEAD/imgs/parameterHints.png -------------------------------------------------------------------------------- /language-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-powerquery/HEAD/language-configuration.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-powerquery/HEAD/package.json -------------------------------------------------------------------------------- /scripts/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-powerquery/HEAD/scripts/package-lock.json -------------------------------------------------------------------------------- /scripts/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-powerquery/HEAD/scripts/package.json -------------------------------------------------------------------------------- /scripts/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-powerquery/HEAD/scripts/readme.md -------------------------------------------------------------------------------- /scripts/src/benchmarkFile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-powerquery/HEAD/scripts/src/benchmarkFile.ts -------------------------------------------------------------------------------- /scripts/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-powerquery/HEAD/scripts/tsconfig.json -------------------------------------------------------------------------------- /server/.mocharc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-powerquery/HEAD/server/.mocharc.json -------------------------------------------------------------------------------- /server/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-powerquery/HEAD/server/.vscode/extensions.json -------------------------------------------------------------------------------- /server/mochaReporterConfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-powerquery/HEAD/server/mochaReporterConfig.json -------------------------------------------------------------------------------- /server/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-powerquery/HEAD/server/package-lock.json -------------------------------------------------------------------------------- /server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-powerquery/HEAD/server/package.json -------------------------------------------------------------------------------- /server/src/cancellationToken/cancellationTokenAdapter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-powerquery/HEAD/server/src/cancellationToken/cancellationTokenAdapter.ts -------------------------------------------------------------------------------- /server/src/cancellationToken/cancellationTokenUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-powerquery/HEAD/server/src/cancellationToken/cancellationTokenUtils.ts -------------------------------------------------------------------------------- /server/src/cancellationToken/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-powerquery/HEAD/server/src/cancellationToken/index.ts -------------------------------------------------------------------------------- /server/src/errorUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-powerquery/HEAD/server/src/errorUtils.ts -------------------------------------------------------------------------------- /server/src/eventHandlerUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-powerquery/HEAD/server/src/eventHandlerUtils.ts -------------------------------------------------------------------------------- /server/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-powerquery/HEAD/server/src/index.ts -------------------------------------------------------------------------------- /server/src/library/externalLibraryUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-powerquery/HEAD/server/src/library/externalLibraryUtils.ts -------------------------------------------------------------------------------- /server/src/library/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-powerquery/HEAD/server/src/library/index.ts -------------------------------------------------------------------------------- /server/src/library/librarySymbolUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-powerquery/HEAD/server/src/library/librarySymbolUtils.ts -------------------------------------------------------------------------------- /server/src/library/libraryTypeResolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-powerquery/HEAD/server/src/library/libraryTypeResolver.ts -------------------------------------------------------------------------------- /server/src/library/libraryUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-powerquery/HEAD/server/src/library/libraryUtils.ts -------------------------------------------------------------------------------- /server/src/library/moduleLibraryUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-powerquery/HEAD/server/src/library/moduleLibraryUtils.ts -------------------------------------------------------------------------------- /server/src/library/sdk/sdk-enUs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-powerquery/HEAD/server/src/library/sdk/sdk-enUs.json -------------------------------------------------------------------------------- /server/src/library/standard/standard-enUs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-powerquery/HEAD/server/src/library/standard/standard-enUs.json -------------------------------------------------------------------------------- /server/src/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-powerquery/HEAD/server/src/server.ts -------------------------------------------------------------------------------- /server/src/settings/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-powerquery/HEAD/server/src/settings/index.ts -------------------------------------------------------------------------------- /server/src/settings/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-powerquery/HEAD/server/src/settings/settings.ts -------------------------------------------------------------------------------- /server/src/settings/settingsUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-powerquery/HEAD/server/src/settings/settingsUtils.ts -------------------------------------------------------------------------------- /server/src/test/errorUtils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-powerquery/HEAD/server/src/test/errorUtils.test.ts -------------------------------------------------------------------------------- /server/src/test/standardLibrary.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-powerquery/HEAD/server/src/test/standardLibrary.test.ts -------------------------------------------------------------------------------- /server/src/traceManagerUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-powerquery/HEAD/server/src/traceManagerUtils.ts -------------------------------------------------------------------------------- /server/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-powerquery/HEAD/server/tsconfig.json -------------------------------------------------------------------------------- /server/tsconfig.webpack.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-powerquery/HEAD/server/tsconfig.webpack.json -------------------------------------------------------------------------------- /server/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-powerquery/HEAD/server/webpack.config.js -------------------------------------------------------------------------------- /syntaxes/.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "tabWidth": 2 3 | } 4 | -------------------------------------------------------------------------------- /syntaxes/powerquery.tmLanguage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-powerquery/HEAD/syntaxes/powerquery.tmLanguage.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-powerquery/HEAD/tsconfig.json --------------------------------------------------------------------------------