├── .eslintrc.json ├── .github ├── renovate.json └── workflows │ └── ci.yml ├── .npmrc ├── .prettierignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── babel.config.json ├── dist ├── index-4c99303f.js ├── index-4c99303f.js.map ├── main.js ├── main.js.map ├── renderer-24339d41.js └── renderer-24339d41.js.map ├── keymaps └── atom-ide-datatips.json ├── lib ├── config.json ├── datatip-manager.tsx ├── main.ts └── tsconfig.json ├── package.json ├── pnpm-lock.yaml ├── pnpm-workspace.yaml ├── rollup.config.js └── styles └── atom-ide-datatips.less /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom-community/atom-ide-datatip/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom-community/atom-ide-datatip/HEAD/.github/renovate.json -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom-community/atom-ide-datatip/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom-community/atom-ide-datatip/HEAD/.npmrc -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom-community/atom-ide-datatip/HEAD/.prettierignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom-community/atom-ide-datatip/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom-community/atom-ide-datatip/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom-community/atom-ide-datatip/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom-community/atom-ide-datatip/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom-community/atom-ide-datatip/HEAD/babel.config.json -------------------------------------------------------------------------------- /dist/index-4c99303f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom-community/atom-ide-datatip/HEAD/dist/index-4c99303f.js -------------------------------------------------------------------------------- /dist/index-4c99303f.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom-community/atom-ide-datatip/HEAD/dist/index-4c99303f.js.map -------------------------------------------------------------------------------- /dist/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom-community/atom-ide-datatip/HEAD/dist/main.js -------------------------------------------------------------------------------- /dist/main.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom-community/atom-ide-datatip/HEAD/dist/main.js.map -------------------------------------------------------------------------------- /dist/renderer-24339d41.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom-community/atom-ide-datatip/HEAD/dist/renderer-24339d41.js -------------------------------------------------------------------------------- /dist/renderer-24339d41.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom-community/atom-ide-datatip/HEAD/dist/renderer-24339d41.js.map -------------------------------------------------------------------------------- /keymaps/atom-ide-datatips.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom-community/atom-ide-datatip/HEAD/keymaps/atom-ide-datatips.json -------------------------------------------------------------------------------- /lib/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom-community/atom-ide-datatip/HEAD/lib/config.json -------------------------------------------------------------------------------- /lib/datatip-manager.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom-community/atom-ide-datatip/HEAD/lib/datatip-manager.tsx -------------------------------------------------------------------------------- /lib/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom-community/atom-ide-datatip/HEAD/lib/main.ts -------------------------------------------------------------------------------- /lib/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom-community/atom-ide-datatip/HEAD/lib/tsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom-community/atom-ide-datatip/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom-community/atom-ide-datatip/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- 1 | packages: 2 | - "." 3 | -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom-community/atom-ide-datatip/HEAD/rollup.config.js -------------------------------------------------------------------------------- /styles/atom-ide-datatips.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom-community/atom-ide-datatip/HEAD/styles/atom-ide-datatips.less --------------------------------------------------------------------------------