├── .eslintrc ├── .github ├── demo.gif └── workflows │ └── ci.yml ├── .gitignore ├── .vscode └── settings.json ├── LICENSE.txt ├── NOTICE.txt ├── e2e ├── .DS_Store ├── docker-compose.yml ├── lib │ └── client.ts ├── package.json ├── project-fixture │ ├── main.ts │ └── tsconfig.json ├── seed │ └── data.sql ├── tests │ ├── .DS_Store │ ├── completions.test.ts │ ├── diagnostics.test.ts │ └── quickinfo.test.ts └── yarn.lock ├── package.json ├── readme.md ├── src ├── configuration.ts ├── index.ts ├── language-service.ts ├── lib │ ├── .DS_Store │ ├── create-markdown-table.ts │ ├── documentation │ │ ├── generate.ts │ │ └── help.ts │ ├── get-kind.ts │ ├── get-substitutions.ts │ ├── infer-type.ts │ ├── map-severity.ts │ └── send-host-message.ts └── logger.ts ├── tsconfig.json └── yarn.lock /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segmentio/ts-mysql-plugin/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segmentio/ts-mysql-plugin/HEAD/.github/demo.gif -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segmentio/ts-mysql-plugin/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segmentio/ts-mysql-plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segmentio/ts-mysql-plugin/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segmentio/ts-mysql-plugin/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segmentio/ts-mysql-plugin/HEAD/NOTICE.txt -------------------------------------------------------------------------------- /e2e/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segmentio/ts-mysql-plugin/HEAD/e2e/.DS_Store -------------------------------------------------------------------------------- /e2e/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segmentio/ts-mysql-plugin/HEAD/e2e/docker-compose.yml -------------------------------------------------------------------------------- /e2e/lib/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segmentio/ts-mysql-plugin/HEAD/e2e/lib/client.ts -------------------------------------------------------------------------------- /e2e/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segmentio/ts-mysql-plugin/HEAD/e2e/package.json -------------------------------------------------------------------------------- /e2e/project-fixture/main.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /e2e/project-fixture/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segmentio/ts-mysql-plugin/HEAD/e2e/project-fixture/tsconfig.json -------------------------------------------------------------------------------- /e2e/seed/data.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segmentio/ts-mysql-plugin/HEAD/e2e/seed/data.sql -------------------------------------------------------------------------------- /e2e/tests/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segmentio/ts-mysql-plugin/HEAD/e2e/tests/.DS_Store -------------------------------------------------------------------------------- /e2e/tests/completions.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segmentio/ts-mysql-plugin/HEAD/e2e/tests/completions.test.ts -------------------------------------------------------------------------------- /e2e/tests/diagnostics.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segmentio/ts-mysql-plugin/HEAD/e2e/tests/diagnostics.test.ts -------------------------------------------------------------------------------- /e2e/tests/quickinfo.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segmentio/ts-mysql-plugin/HEAD/e2e/tests/quickinfo.test.ts -------------------------------------------------------------------------------- /e2e/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segmentio/ts-mysql-plugin/HEAD/e2e/yarn.lock -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segmentio/ts-mysql-plugin/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segmentio/ts-mysql-plugin/HEAD/readme.md -------------------------------------------------------------------------------- /src/configuration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segmentio/ts-mysql-plugin/HEAD/src/configuration.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segmentio/ts-mysql-plugin/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/language-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segmentio/ts-mysql-plugin/HEAD/src/language-service.ts -------------------------------------------------------------------------------- /src/lib/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segmentio/ts-mysql-plugin/HEAD/src/lib/.DS_Store -------------------------------------------------------------------------------- /src/lib/create-markdown-table.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segmentio/ts-mysql-plugin/HEAD/src/lib/create-markdown-table.ts -------------------------------------------------------------------------------- /src/lib/documentation/generate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segmentio/ts-mysql-plugin/HEAD/src/lib/documentation/generate.ts -------------------------------------------------------------------------------- /src/lib/documentation/help.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segmentio/ts-mysql-plugin/HEAD/src/lib/documentation/help.ts -------------------------------------------------------------------------------- /src/lib/get-kind.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segmentio/ts-mysql-plugin/HEAD/src/lib/get-kind.ts -------------------------------------------------------------------------------- /src/lib/get-substitutions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segmentio/ts-mysql-plugin/HEAD/src/lib/get-substitutions.ts -------------------------------------------------------------------------------- /src/lib/infer-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segmentio/ts-mysql-plugin/HEAD/src/lib/infer-type.ts -------------------------------------------------------------------------------- /src/lib/map-severity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segmentio/ts-mysql-plugin/HEAD/src/lib/map-severity.ts -------------------------------------------------------------------------------- /src/lib/send-host-message.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segmentio/ts-mysql-plugin/HEAD/src/lib/send-host-message.ts -------------------------------------------------------------------------------- /src/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segmentio/ts-mysql-plugin/HEAD/src/logger.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segmentio/ts-mysql-plugin/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segmentio/ts-mysql-plugin/HEAD/yarn.lock --------------------------------------------------------------------------------