├── .eslintrc.js ├── .gitattributes ├── .github └── workflows │ └── CI.yaml ├── .gitignore ├── .vscode ├── extensions.json ├── launch.json ├── settings.json └── tasks.json ├── .vscodeignore ├── CHANGELOG.md ├── README.md ├── cmds ├── build.sh ├── ci.sh └── test.sh ├── package.json ├── src ├── configResolver.ts ├── extension.ts ├── main.ts └── test │ ├── runTest.ts │ └── suite │ ├── fixImports.test.ts │ ├── index.ts │ ├── relativize.unix.test.ts │ └── relativize.windows.test.ts ├── tsconfig.json └── tslint.json /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluefireteam/vscode-dart-import/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluefireteam/vscode-dart-import/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/CI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluefireteam/vscode-dart-import/HEAD/.github/workflows/CI.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluefireteam/vscode-dart-import/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluefireteam/vscode-dart-import/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluefireteam/vscode-dart-import/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluefireteam/vscode-dart-import/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluefireteam/vscode-dart-import/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluefireteam/vscode-dart-import/HEAD/.vscodeignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluefireteam/vscode-dart-import/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluefireteam/vscode-dart-import/HEAD/README.md -------------------------------------------------------------------------------- /cmds/build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash -e 2 | 3 | rm -rf out *.vsix 4 | 5 | npm run compile 6 | -------------------------------------------------------------------------------- /cmds/ci.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluefireteam/vscode-dart-import/HEAD/cmds/ci.sh -------------------------------------------------------------------------------- /cmds/test.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash -e 2 | 3 | ./cmds/build.sh 4 | npm run test 5 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluefireteam/vscode-dart-import/HEAD/package.json -------------------------------------------------------------------------------- /src/configResolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluefireteam/vscode-dart-import/HEAD/src/configResolver.ts -------------------------------------------------------------------------------- /src/extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluefireteam/vscode-dart-import/HEAD/src/extension.ts -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluefireteam/vscode-dart-import/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/test/runTest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluefireteam/vscode-dart-import/HEAD/src/test/runTest.ts -------------------------------------------------------------------------------- /src/test/suite/fixImports.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluefireteam/vscode-dart-import/HEAD/src/test/suite/fixImports.test.ts -------------------------------------------------------------------------------- /src/test/suite/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluefireteam/vscode-dart-import/HEAD/src/test/suite/index.ts -------------------------------------------------------------------------------- /src/test/suite/relativize.unix.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluefireteam/vscode-dart-import/HEAD/src/test/suite/relativize.unix.test.ts -------------------------------------------------------------------------------- /src/test/suite/relativize.windows.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluefireteam/vscode-dart-import/HEAD/src/test/suite/relativize.windows.test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluefireteam/vscode-dart-import/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluefireteam/vscode-dart-import/HEAD/tslint.json --------------------------------------------------------------------------------