├── .github └── ISSUE_TEMPLATE │ └── bug_report.md ├── .gitignore ├── LICENCE ├── extension ├── .vscode │ ├── launch.json │ └── tasks.json ├── 2013wiql.ebnf ├── configs │ ├── dev.json │ └── release.json ├── details.md ├── gulpfile.js ├── img │ ├── contextMenu.png │ ├── dialog.png │ ├── donate.png │ ├── logo.png │ ├── playground.png │ ├── resultsBar.png │ ├── smallDarkThemeLogo.png │ └── smallLogo.png ├── package-lock.json ├── package.json ├── playground.html ├── queryContext.html ├── queryEditor.html ├── readme.md ├── scripts │ ├── RestCall.ts │ ├── cachedData │ │ ├── CachedValue.ts │ │ ├── fields.ts │ │ ├── identities.ts │ │ ├── identities │ │ │ ├── extensionCache.ts │ │ │ ├── getIdentities.ts │ │ │ └── throttlePromises.ts │ │ ├── nodes.ts │ │ ├── projects.ts │ │ ├── relationTypes.ts │ │ ├── tags.ts │ │ ├── teams.ts │ │ ├── workItemTypes.ts │ │ └── workitemTypeCategories.ts │ ├── events.ts │ ├── getCurrentTheme.ts │ ├── queryContext │ │ ├── contextContracts.ts │ │ └── queryContext.ts │ ├── queryEditor │ │ ├── queryDialog.ts │ │ └── queryEditor.ts │ ├── wiqlEditor │ │ ├── compiler │ │ │ ├── parser.ts │ │ │ ├── symbols.ts │ │ │ ├── tokenPatterns.ts │ │ │ ├── tokenizer.ts │ │ │ ├── wiqlTable.ts │ │ │ └── wiqlTableContracts.ts │ │ ├── completion │ │ │ ├── completion.ts │ │ │ ├── completionContext.ts │ │ │ ├── fieldCompletion.ts │ │ │ ├── identifierCompletion.ts │ │ │ ├── isIn.ts │ │ │ ├── keywordCompletion.ts │ │ │ ├── pushStringCompletions.ts │ │ │ ├── valueCompletions.ts │ │ │ ├── variableArgumentCompletion.ts │ │ │ └── variableCompletion.ts │ │ ├── errorCheckers │ │ │ ├── AllowedValuesChecker.ts │ │ │ ├── ErrorChecker.ts │ │ │ ├── IErrorChecker.ts │ │ │ ├── LinkTypeCountChecker.ts │ │ │ ├── NameErrorChecker.ts │ │ │ ├── PrefixChecker.ts │ │ │ ├── SyntaxErrorChecker.ts │ │ │ ├── TypeErrorChecker.ts │ │ │ ├── VariableParametersChecker.ts │ │ │ └── errorDecorations.ts │ │ ├── formatter.ts │ │ ├── hoverProvider.ts │ │ ├── importExport.ts │ │ ├── parseAnalysis │ │ │ ├── findSymbol.ts │ │ │ └── whereClauses.ts │ │ ├── wiqlDefinition.ts │ │ └── wiqlEditor.tsx │ └── wiqlPlayground │ │ ├── playground.ts │ │ └── queryResults.tsx ├── styles │ ├── colors.scss │ └── wiqlEditor.scss ├── test-main.js ├── tsconfig.json ├── tslint.json ├── typings.json ├── vss-extension.json ├── webpack.config.js └── wiql.ebnf └── readme.md /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostreifel/wiql-editor/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | scripts/*.js 3 | typings 4 | dist 5 | build 6 | *vsix 7 | test -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostreifel/wiql-editor/HEAD/LICENCE -------------------------------------------------------------------------------- /extension/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostreifel/wiql-editor/HEAD/extension/.vscode/launch.json -------------------------------------------------------------------------------- /extension/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostreifel/wiql-editor/HEAD/extension/.vscode/tasks.json -------------------------------------------------------------------------------- /extension/2013wiql.ebnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostreifel/wiql-editor/HEAD/extension/2013wiql.ebnf -------------------------------------------------------------------------------- /extension/configs/dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostreifel/wiql-editor/HEAD/extension/configs/dev.json -------------------------------------------------------------------------------- /extension/configs/release.json: -------------------------------------------------------------------------------- 1 | { 2 | "public": true 3 | } -------------------------------------------------------------------------------- /extension/details.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostreifel/wiql-editor/HEAD/extension/details.md -------------------------------------------------------------------------------- /extension/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostreifel/wiql-editor/HEAD/extension/gulpfile.js -------------------------------------------------------------------------------- /extension/img/contextMenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostreifel/wiql-editor/HEAD/extension/img/contextMenu.png -------------------------------------------------------------------------------- /extension/img/dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostreifel/wiql-editor/HEAD/extension/img/dialog.png -------------------------------------------------------------------------------- /extension/img/donate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostreifel/wiql-editor/HEAD/extension/img/donate.png -------------------------------------------------------------------------------- /extension/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostreifel/wiql-editor/HEAD/extension/img/logo.png -------------------------------------------------------------------------------- /extension/img/playground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostreifel/wiql-editor/HEAD/extension/img/playground.png -------------------------------------------------------------------------------- /extension/img/resultsBar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostreifel/wiql-editor/HEAD/extension/img/resultsBar.png -------------------------------------------------------------------------------- /extension/img/smallDarkThemeLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostreifel/wiql-editor/HEAD/extension/img/smallDarkThemeLogo.png -------------------------------------------------------------------------------- /extension/img/smallLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostreifel/wiql-editor/HEAD/extension/img/smallLogo.png -------------------------------------------------------------------------------- /extension/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostreifel/wiql-editor/HEAD/extension/package-lock.json -------------------------------------------------------------------------------- /extension/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostreifel/wiql-editor/HEAD/extension/package.json -------------------------------------------------------------------------------- /extension/playground.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostreifel/wiql-editor/HEAD/extension/playground.html -------------------------------------------------------------------------------- /extension/queryContext.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostreifel/wiql-editor/HEAD/extension/queryContext.html -------------------------------------------------------------------------------- /extension/queryEditor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostreifel/wiql-editor/HEAD/extension/queryEditor.html -------------------------------------------------------------------------------- /extension/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostreifel/wiql-editor/HEAD/extension/readme.md -------------------------------------------------------------------------------- /extension/scripts/RestCall.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostreifel/wiql-editor/HEAD/extension/scripts/RestCall.ts -------------------------------------------------------------------------------- /extension/scripts/cachedData/CachedValue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostreifel/wiql-editor/HEAD/extension/scripts/cachedData/CachedValue.ts -------------------------------------------------------------------------------- /extension/scripts/cachedData/fields.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostreifel/wiql-editor/HEAD/extension/scripts/cachedData/fields.ts -------------------------------------------------------------------------------- /extension/scripts/cachedData/identities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostreifel/wiql-editor/HEAD/extension/scripts/cachedData/identities.ts -------------------------------------------------------------------------------- /extension/scripts/cachedData/identities/extensionCache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostreifel/wiql-editor/HEAD/extension/scripts/cachedData/identities/extensionCache.ts -------------------------------------------------------------------------------- /extension/scripts/cachedData/identities/getIdentities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostreifel/wiql-editor/HEAD/extension/scripts/cachedData/identities/getIdentities.ts -------------------------------------------------------------------------------- /extension/scripts/cachedData/identities/throttlePromises.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostreifel/wiql-editor/HEAD/extension/scripts/cachedData/identities/throttlePromises.ts -------------------------------------------------------------------------------- /extension/scripts/cachedData/nodes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostreifel/wiql-editor/HEAD/extension/scripts/cachedData/nodes.ts -------------------------------------------------------------------------------- /extension/scripts/cachedData/projects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostreifel/wiql-editor/HEAD/extension/scripts/cachedData/projects.ts -------------------------------------------------------------------------------- /extension/scripts/cachedData/relationTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostreifel/wiql-editor/HEAD/extension/scripts/cachedData/relationTypes.ts -------------------------------------------------------------------------------- /extension/scripts/cachedData/tags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostreifel/wiql-editor/HEAD/extension/scripts/cachedData/tags.ts -------------------------------------------------------------------------------- /extension/scripts/cachedData/teams.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostreifel/wiql-editor/HEAD/extension/scripts/cachedData/teams.ts -------------------------------------------------------------------------------- /extension/scripts/cachedData/workItemTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostreifel/wiql-editor/HEAD/extension/scripts/cachedData/workItemTypes.ts -------------------------------------------------------------------------------- /extension/scripts/cachedData/workitemTypeCategories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostreifel/wiql-editor/HEAD/extension/scripts/cachedData/workitemTypeCategories.ts -------------------------------------------------------------------------------- /extension/scripts/events.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostreifel/wiql-editor/HEAD/extension/scripts/events.ts -------------------------------------------------------------------------------- /extension/scripts/getCurrentTheme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostreifel/wiql-editor/HEAD/extension/scripts/getCurrentTheme.ts -------------------------------------------------------------------------------- /extension/scripts/queryContext/contextContracts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostreifel/wiql-editor/HEAD/extension/scripts/queryContext/contextContracts.ts -------------------------------------------------------------------------------- /extension/scripts/queryContext/queryContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostreifel/wiql-editor/HEAD/extension/scripts/queryContext/queryContext.ts -------------------------------------------------------------------------------- /extension/scripts/queryEditor/queryDialog.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostreifel/wiql-editor/HEAD/extension/scripts/queryEditor/queryDialog.ts -------------------------------------------------------------------------------- /extension/scripts/queryEditor/queryEditor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostreifel/wiql-editor/HEAD/extension/scripts/queryEditor/queryEditor.ts -------------------------------------------------------------------------------- /extension/scripts/wiqlEditor/compiler/parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostreifel/wiql-editor/HEAD/extension/scripts/wiqlEditor/compiler/parser.ts -------------------------------------------------------------------------------- /extension/scripts/wiqlEditor/compiler/symbols.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostreifel/wiql-editor/HEAD/extension/scripts/wiqlEditor/compiler/symbols.ts -------------------------------------------------------------------------------- /extension/scripts/wiqlEditor/compiler/tokenPatterns.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostreifel/wiql-editor/HEAD/extension/scripts/wiqlEditor/compiler/tokenPatterns.ts -------------------------------------------------------------------------------- /extension/scripts/wiqlEditor/compiler/tokenizer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostreifel/wiql-editor/HEAD/extension/scripts/wiqlEditor/compiler/tokenizer.ts -------------------------------------------------------------------------------- /extension/scripts/wiqlEditor/compiler/wiqlTable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostreifel/wiql-editor/HEAD/extension/scripts/wiqlEditor/compiler/wiqlTable.ts -------------------------------------------------------------------------------- /extension/scripts/wiqlEditor/compiler/wiqlTableContracts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostreifel/wiql-editor/HEAD/extension/scripts/wiqlEditor/compiler/wiqlTableContracts.ts -------------------------------------------------------------------------------- /extension/scripts/wiqlEditor/completion/completion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostreifel/wiql-editor/HEAD/extension/scripts/wiqlEditor/completion/completion.ts -------------------------------------------------------------------------------- /extension/scripts/wiqlEditor/completion/completionContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostreifel/wiql-editor/HEAD/extension/scripts/wiqlEditor/completion/completionContext.ts -------------------------------------------------------------------------------- /extension/scripts/wiqlEditor/completion/fieldCompletion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostreifel/wiql-editor/HEAD/extension/scripts/wiqlEditor/completion/fieldCompletion.ts -------------------------------------------------------------------------------- /extension/scripts/wiqlEditor/completion/identifierCompletion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostreifel/wiql-editor/HEAD/extension/scripts/wiqlEditor/completion/identifierCompletion.ts -------------------------------------------------------------------------------- /extension/scripts/wiqlEditor/completion/isIn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostreifel/wiql-editor/HEAD/extension/scripts/wiqlEditor/completion/isIn.ts -------------------------------------------------------------------------------- /extension/scripts/wiqlEditor/completion/keywordCompletion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostreifel/wiql-editor/HEAD/extension/scripts/wiqlEditor/completion/keywordCompletion.ts -------------------------------------------------------------------------------- /extension/scripts/wiqlEditor/completion/pushStringCompletions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostreifel/wiql-editor/HEAD/extension/scripts/wiqlEditor/completion/pushStringCompletions.ts -------------------------------------------------------------------------------- /extension/scripts/wiqlEditor/completion/valueCompletions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostreifel/wiql-editor/HEAD/extension/scripts/wiqlEditor/completion/valueCompletions.ts -------------------------------------------------------------------------------- /extension/scripts/wiqlEditor/completion/variableArgumentCompletion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostreifel/wiql-editor/HEAD/extension/scripts/wiqlEditor/completion/variableArgumentCompletion.ts -------------------------------------------------------------------------------- /extension/scripts/wiqlEditor/completion/variableCompletion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostreifel/wiql-editor/HEAD/extension/scripts/wiqlEditor/completion/variableCompletion.ts -------------------------------------------------------------------------------- /extension/scripts/wiqlEditor/errorCheckers/AllowedValuesChecker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostreifel/wiql-editor/HEAD/extension/scripts/wiqlEditor/errorCheckers/AllowedValuesChecker.ts -------------------------------------------------------------------------------- /extension/scripts/wiqlEditor/errorCheckers/ErrorChecker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostreifel/wiql-editor/HEAD/extension/scripts/wiqlEditor/errorCheckers/ErrorChecker.ts -------------------------------------------------------------------------------- /extension/scripts/wiqlEditor/errorCheckers/IErrorChecker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostreifel/wiql-editor/HEAD/extension/scripts/wiqlEditor/errorCheckers/IErrorChecker.ts -------------------------------------------------------------------------------- /extension/scripts/wiqlEditor/errorCheckers/LinkTypeCountChecker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostreifel/wiql-editor/HEAD/extension/scripts/wiqlEditor/errorCheckers/LinkTypeCountChecker.ts -------------------------------------------------------------------------------- /extension/scripts/wiqlEditor/errorCheckers/NameErrorChecker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostreifel/wiql-editor/HEAD/extension/scripts/wiqlEditor/errorCheckers/NameErrorChecker.ts -------------------------------------------------------------------------------- /extension/scripts/wiqlEditor/errorCheckers/PrefixChecker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostreifel/wiql-editor/HEAD/extension/scripts/wiqlEditor/errorCheckers/PrefixChecker.ts -------------------------------------------------------------------------------- /extension/scripts/wiqlEditor/errorCheckers/SyntaxErrorChecker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostreifel/wiql-editor/HEAD/extension/scripts/wiqlEditor/errorCheckers/SyntaxErrorChecker.ts -------------------------------------------------------------------------------- /extension/scripts/wiqlEditor/errorCheckers/TypeErrorChecker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostreifel/wiql-editor/HEAD/extension/scripts/wiqlEditor/errorCheckers/TypeErrorChecker.ts -------------------------------------------------------------------------------- /extension/scripts/wiqlEditor/errorCheckers/VariableParametersChecker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostreifel/wiql-editor/HEAD/extension/scripts/wiqlEditor/errorCheckers/VariableParametersChecker.ts -------------------------------------------------------------------------------- /extension/scripts/wiqlEditor/errorCheckers/errorDecorations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostreifel/wiql-editor/HEAD/extension/scripts/wiqlEditor/errorCheckers/errorDecorations.ts -------------------------------------------------------------------------------- /extension/scripts/wiqlEditor/formatter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostreifel/wiql-editor/HEAD/extension/scripts/wiqlEditor/formatter.ts -------------------------------------------------------------------------------- /extension/scripts/wiqlEditor/hoverProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostreifel/wiql-editor/HEAD/extension/scripts/wiqlEditor/hoverProvider.ts -------------------------------------------------------------------------------- /extension/scripts/wiqlEditor/importExport.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostreifel/wiql-editor/HEAD/extension/scripts/wiqlEditor/importExport.ts -------------------------------------------------------------------------------- /extension/scripts/wiqlEditor/parseAnalysis/findSymbol.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostreifel/wiql-editor/HEAD/extension/scripts/wiqlEditor/parseAnalysis/findSymbol.ts -------------------------------------------------------------------------------- /extension/scripts/wiqlEditor/parseAnalysis/whereClauses.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostreifel/wiql-editor/HEAD/extension/scripts/wiqlEditor/parseAnalysis/whereClauses.ts -------------------------------------------------------------------------------- /extension/scripts/wiqlEditor/wiqlDefinition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostreifel/wiql-editor/HEAD/extension/scripts/wiqlEditor/wiqlDefinition.ts -------------------------------------------------------------------------------- /extension/scripts/wiqlEditor/wiqlEditor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostreifel/wiql-editor/HEAD/extension/scripts/wiqlEditor/wiqlEditor.tsx -------------------------------------------------------------------------------- /extension/scripts/wiqlPlayground/playground.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostreifel/wiql-editor/HEAD/extension/scripts/wiqlPlayground/playground.ts -------------------------------------------------------------------------------- /extension/scripts/wiqlPlayground/queryResults.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostreifel/wiql-editor/HEAD/extension/scripts/wiqlPlayground/queryResults.tsx -------------------------------------------------------------------------------- /extension/styles/colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostreifel/wiql-editor/HEAD/extension/styles/colors.scss -------------------------------------------------------------------------------- /extension/styles/wiqlEditor.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostreifel/wiql-editor/HEAD/extension/styles/wiqlEditor.scss -------------------------------------------------------------------------------- /extension/test-main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostreifel/wiql-editor/HEAD/extension/test-main.js -------------------------------------------------------------------------------- /extension/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostreifel/wiql-editor/HEAD/extension/tsconfig.json -------------------------------------------------------------------------------- /extension/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostreifel/wiql-editor/HEAD/extension/tslint.json -------------------------------------------------------------------------------- /extension/typings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostreifel/wiql-editor/HEAD/extension/typings.json -------------------------------------------------------------------------------- /extension/vss-extension.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostreifel/wiql-editor/HEAD/extension/vss-extension.json -------------------------------------------------------------------------------- /extension/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostreifel/wiql-editor/HEAD/extension/webpack.config.js -------------------------------------------------------------------------------- /extension/wiql.ebnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostreifel/wiql-editor/HEAD/extension/wiql.ebnf -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostreifel/wiql-editor/HEAD/readme.md --------------------------------------------------------------------------------