├── .editorconfig ├── .eslintrc.json ├── .gitattributes ├── .gitignore ├── .vscode ├── launch.json ├── settings.json └── tasks.json ├── .vscodeignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── img ├── demo.gif ├── demo_allowed_lines.gif └── icon.png ├── package.json ├── src ├── extension.ts ├── test │ ├── runTest.ts │ └── suite │ │ ├── extension.test.ts │ │ ├── index.ts │ │ └── testUtils.ts └── types.ts ├── tsconfig.json └── webpack.config.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usernamehw/vscode-remove-empty-lines/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usernamehw/vscode-remove-empty-lines/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usernamehw/vscode-remove-empty-lines/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usernamehw/vscode-remove-empty-lines/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usernamehw/vscode-remove-empty-lines/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usernamehw/vscode-remove-empty-lines/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usernamehw/vscode-remove-empty-lines/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usernamehw/vscode-remove-empty-lines/HEAD/.vscodeignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usernamehw/vscode-remove-empty-lines/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usernamehw/vscode-remove-empty-lines/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usernamehw/vscode-remove-empty-lines/HEAD/README.md -------------------------------------------------------------------------------- /img/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usernamehw/vscode-remove-empty-lines/HEAD/img/demo.gif -------------------------------------------------------------------------------- /img/demo_allowed_lines.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usernamehw/vscode-remove-empty-lines/HEAD/img/demo_allowed_lines.gif -------------------------------------------------------------------------------- /img/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usernamehw/vscode-remove-empty-lines/HEAD/img/icon.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usernamehw/vscode-remove-empty-lines/HEAD/package.json -------------------------------------------------------------------------------- /src/extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usernamehw/vscode-remove-empty-lines/HEAD/src/extension.ts -------------------------------------------------------------------------------- /src/test/runTest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usernamehw/vscode-remove-empty-lines/HEAD/src/test/runTest.ts -------------------------------------------------------------------------------- /src/test/suite/extension.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usernamehw/vscode-remove-empty-lines/HEAD/src/test/suite/extension.test.ts -------------------------------------------------------------------------------- /src/test/suite/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usernamehw/vscode-remove-empty-lines/HEAD/src/test/suite/index.ts -------------------------------------------------------------------------------- /src/test/suite/testUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usernamehw/vscode-remove-empty-lines/HEAD/src/test/suite/testUtils.ts -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usernamehw/vscode-remove-empty-lines/HEAD/src/types.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usernamehw/vscode-remove-empty-lines/HEAD/tsconfig.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usernamehw/vscode-remove-empty-lines/HEAD/webpack.config.js --------------------------------------------------------------------------------