├── .editorconfig ├── .eslintrc.json ├── .github ├── CODEOWNERS └── workflows │ ├── build.yml │ └── lsif.yml ├── .gitignore ├── .prettierignore ├── .vscode ├── extensions.json ├── settings.json └── tasks.json ├── LICENSE ├── README.md ├── codecov.yml ├── karma.conf.ts ├── package.json ├── prettier.config.js ├── renovate.json ├── src ├── errors.ts ├── helpers.ts ├── hoverifier.test.ts ├── hoverifier.ts ├── index.ts ├── loading.test.ts ├── loading.ts ├── overlay_position.test.ts ├── overlay_position.ts ├── positions.test.ts ├── positions.ts ├── state.ts ├── testutils │ ├── assert.ts │ ├── dom.test.ts │ ├── dom.ts │ ├── fixtures.ts │ ├── mouse.ts │ └── rev.ts ├── token_position.test.ts ├── token_position.ts ├── types.ts └── typings │ └── html.d.ts ├── testdata ├── generate.ts ├── github │ ├── generate.ts │ └── styles.css ├── mux.go.txt └── sourcegraph │ ├── generate.ts │ └── styles.css ├── tsconfig.dist.json ├── tsconfig.json ├── webpack.test.config.ts └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/codeintellify/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/codeintellify/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/codeintellify/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/codeintellify/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/lsif.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/codeintellify/HEAD/.github/workflows/lsif.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/codeintellify/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/codeintellify/HEAD/.prettierignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/codeintellify/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/codeintellify/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/codeintellify/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/codeintellify/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/codeintellify/HEAD/README.md -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/codeintellify/HEAD/codecov.yml -------------------------------------------------------------------------------- /karma.conf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/codeintellify/HEAD/karma.conf.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/codeintellify/HEAD/package.json -------------------------------------------------------------------------------- /prettier.config.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@sourcegraph/prettierrc') 2 | -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/codeintellify/HEAD/renovate.json -------------------------------------------------------------------------------- /src/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/codeintellify/HEAD/src/errors.ts -------------------------------------------------------------------------------- /src/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/codeintellify/HEAD/src/helpers.ts -------------------------------------------------------------------------------- /src/hoverifier.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/codeintellify/HEAD/src/hoverifier.test.ts -------------------------------------------------------------------------------- /src/hoverifier.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/codeintellify/HEAD/src/hoverifier.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/codeintellify/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/loading.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/codeintellify/HEAD/src/loading.test.ts -------------------------------------------------------------------------------- /src/loading.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/codeintellify/HEAD/src/loading.ts -------------------------------------------------------------------------------- /src/overlay_position.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/codeintellify/HEAD/src/overlay_position.test.ts -------------------------------------------------------------------------------- /src/overlay_position.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/codeintellify/HEAD/src/overlay_position.ts -------------------------------------------------------------------------------- /src/positions.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/codeintellify/HEAD/src/positions.test.ts -------------------------------------------------------------------------------- /src/positions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/codeintellify/HEAD/src/positions.ts -------------------------------------------------------------------------------- /src/state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/codeintellify/HEAD/src/state.ts -------------------------------------------------------------------------------- /src/testutils/assert.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/codeintellify/HEAD/src/testutils/assert.ts -------------------------------------------------------------------------------- /src/testutils/dom.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/codeintellify/HEAD/src/testutils/dom.test.ts -------------------------------------------------------------------------------- /src/testutils/dom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/codeintellify/HEAD/src/testutils/dom.ts -------------------------------------------------------------------------------- /src/testutils/fixtures.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/codeintellify/HEAD/src/testutils/fixtures.ts -------------------------------------------------------------------------------- /src/testutils/mouse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/codeintellify/HEAD/src/testutils/mouse.ts -------------------------------------------------------------------------------- /src/testutils/rev.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/codeintellify/HEAD/src/testutils/rev.ts -------------------------------------------------------------------------------- /src/token_position.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/codeintellify/HEAD/src/token_position.test.ts -------------------------------------------------------------------------------- /src/token_position.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/codeintellify/HEAD/src/token_position.ts -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/codeintellify/HEAD/src/types.ts -------------------------------------------------------------------------------- /src/typings/html.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/codeintellify/HEAD/src/typings/html.d.ts -------------------------------------------------------------------------------- /testdata/generate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/codeintellify/HEAD/testdata/generate.ts -------------------------------------------------------------------------------- /testdata/github/generate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/codeintellify/HEAD/testdata/github/generate.ts -------------------------------------------------------------------------------- /testdata/github/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/codeintellify/HEAD/testdata/github/styles.css -------------------------------------------------------------------------------- /testdata/mux.go.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/codeintellify/HEAD/testdata/mux.go.txt -------------------------------------------------------------------------------- /testdata/sourcegraph/generate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/codeintellify/HEAD/testdata/sourcegraph/generate.ts -------------------------------------------------------------------------------- /testdata/sourcegraph/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/codeintellify/HEAD/testdata/sourcegraph/styles.css -------------------------------------------------------------------------------- /tsconfig.dist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/codeintellify/HEAD/tsconfig.dist.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/codeintellify/HEAD/tsconfig.json -------------------------------------------------------------------------------- /webpack.test.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/codeintellify/HEAD/webpack.test.config.ts -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/codeintellify/HEAD/yarn.lock --------------------------------------------------------------------------------