├── .DS_Store ├── .eslintrc.json ├── .gitignore ├── .vscode ├── extensions.json ├── launch.json ├── settings.json └── tasks.json ├── .vscodeignore ├── CHANGELOG.md ├── Capture.gif ├── LICENSE ├── README.md ├── package.json ├── resources ├── .DS_Store ├── dark │ ├── high.svg │ ├── low.svg │ ├── medium.svg │ ├── play-circle.svg │ ├── refresh.svg │ └── trash.svg ├── icon.png └── light │ ├── high.svg │ ├── low.svg │ ├── medium.svg │ ├── play-circle.svg │ ├── refresh.svg │ └── trash.svg ├── src ├── config-store.ts ├── coverage-file.ts ├── coverage-parser.ts ├── data-provider.ts ├── extension.ts ├── files-loader.ts ├── test │ ├── runTest.ts │ └── suite │ │ ├── extension.test.ts │ │ └── index.ts └── workspace-folder-coverage-file.ts ├── tsconfig.json └── webpack.config.js /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutterando/flutter-coverage/HEAD/.DS_Store -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutterando/flutter-coverage/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutterando/flutter-coverage/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutterando/flutter-coverage/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutterando/flutter-coverage/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutterando/flutter-coverage/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutterando/flutter-coverage/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutterando/flutter-coverage/HEAD/.vscodeignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Changelog 2 | 3 | ## 0.0.1 [2021-08-21] 4 | 5 | - Initial Release 6 | -------------------------------------------------------------------------------- /Capture.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutterando/flutter-coverage/HEAD/Capture.gif -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutterando/flutter-coverage/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutterando/flutter-coverage/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutterando/flutter-coverage/HEAD/package.json -------------------------------------------------------------------------------- /resources/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutterando/flutter-coverage/HEAD/resources/.DS_Store -------------------------------------------------------------------------------- /resources/dark/high.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutterando/flutter-coverage/HEAD/resources/dark/high.svg -------------------------------------------------------------------------------- /resources/dark/low.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutterando/flutter-coverage/HEAD/resources/dark/low.svg -------------------------------------------------------------------------------- /resources/dark/medium.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutterando/flutter-coverage/HEAD/resources/dark/medium.svg -------------------------------------------------------------------------------- /resources/dark/play-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutterando/flutter-coverage/HEAD/resources/dark/play-circle.svg -------------------------------------------------------------------------------- /resources/dark/refresh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutterando/flutter-coverage/HEAD/resources/dark/refresh.svg -------------------------------------------------------------------------------- /resources/dark/trash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutterando/flutter-coverage/HEAD/resources/dark/trash.svg -------------------------------------------------------------------------------- /resources/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutterando/flutter-coverage/HEAD/resources/icon.png -------------------------------------------------------------------------------- /resources/light/high.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutterando/flutter-coverage/HEAD/resources/light/high.svg -------------------------------------------------------------------------------- /resources/light/low.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutterando/flutter-coverage/HEAD/resources/light/low.svg -------------------------------------------------------------------------------- /resources/light/medium.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutterando/flutter-coverage/HEAD/resources/light/medium.svg -------------------------------------------------------------------------------- /resources/light/play-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutterando/flutter-coverage/HEAD/resources/light/play-circle.svg -------------------------------------------------------------------------------- /resources/light/refresh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutterando/flutter-coverage/HEAD/resources/light/refresh.svg -------------------------------------------------------------------------------- /resources/light/trash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutterando/flutter-coverage/HEAD/resources/light/trash.svg -------------------------------------------------------------------------------- /src/config-store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutterando/flutter-coverage/HEAD/src/config-store.ts -------------------------------------------------------------------------------- /src/coverage-file.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutterando/flutter-coverage/HEAD/src/coverage-file.ts -------------------------------------------------------------------------------- /src/coverage-parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutterando/flutter-coverage/HEAD/src/coverage-parser.ts -------------------------------------------------------------------------------- /src/data-provider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutterando/flutter-coverage/HEAD/src/data-provider.ts -------------------------------------------------------------------------------- /src/extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutterando/flutter-coverage/HEAD/src/extension.ts -------------------------------------------------------------------------------- /src/files-loader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutterando/flutter-coverage/HEAD/src/files-loader.ts -------------------------------------------------------------------------------- /src/test/runTest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutterando/flutter-coverage/HEAD/src/test/runTest.ts -------------------------------------------------------------------------------- /src/test/suite/extension.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutterando/flutter-coverage/HEAD/src/test/suite/extension.test.ts -------------------------------------------------------------------------------- /src/test/suite/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutterando/flutter-coverage/HEAD/src/test/suite/index.ts -------------------------------------------------------------------------------- /src/workspace-folder-coverage-file.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutterando/flutter-coverage/HEAD/src/workspace-folder-coverage-file.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutterando/flutter-coverage/HEAD/tsconfig.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutterando/flutter-coverage/HEAD/webpack.config.js --------------------------------------------------------------------------------