├── .codeclimate.yml ├── .editorconfig ├── .gitignore ├── .gitlab-ci.yml ├── .npmpackagejsonlintrc.json ├── .repo-iconify ├── CODEOWNERS ├── DESIGN.md ├── LICENSE ├── MANUAL.md ├── README.md ├── logo.png ├── package.json ├── wsl-open.1 ├── wsl-open.bats └── wsl-open.sh /.codeclimate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4U6U57/wsl-open/HEAD/.codeclimate.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4U6U57/wsl-open/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4U6U57/wsl-open/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4U6U57/wsl-open/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.npmpackagejsonlintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "npm-package-json-lint-config-default" 3 | } 4 | -------------------------------------------------------------------------------- /.repo-iconify: -------------------------------------------------------------------------------- 1 | Text=OPEN 2 | -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @4U6U57 2 | -------------------------------------------------------------------------------- /DESIGN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4U6U57/wsl-open/HEAD/DESIGN.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4U6U57/wsl-open/HEAD/LICENSE -------------------------------------------------------------------------------- /MANUAL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4U6U57/wsl-open/HEAD/MANUAL.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4U6U57/wsl-open/HEAD/README.md -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4U6U57/wsl-open/HEAD/logo.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4U6U57/wsl-open/HEAD/package.json -------------------------------------------------------------------------------- /wsl-open.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4U6U57/wsl-open/HEAD/wsl-open.1 -------------------------------------------------------------------------------- /wsl-open.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4U6U57/wsl-open/HEAD/wsl-open.bats -------------------------------------------------------------------------------- /wsl-open.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4U6U57/wsl-open/HEAD/wsl-open.sh --------------------------------------------------------------------------------