├── .editorconfig ├── .gitattributes ├── .gitignore ├── .npmrc ├── .prettierrc.json ├── LICENSE ├── changelog.md ├── code-of-conduct.md ├── contributing.md ├── images ├── cli-help.png ├── cover.png ├── demo.gif └── flags-demo.gif ├── index.js ├── package.json ├── readme.md ├── test.js └── utils ├── cli.js ├── end.js ├── init.js ├── results.js └── switch.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLH-Fellowship/stackoverflow-cli/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLH-Fellowship/stackoverflow-cli/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLH-Fellowship/stackoverflow-cli/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLH-Fellowship/stackoverflow-cli/HEAD/LICENSE -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLH-Fellowship/stackoverflow-cli/HEAD/changelog.md -------------------------------------------------------------------------------- /code-of-conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLH-Fellowship/stackoverflow-cli/HEAD/code-of-conduct.md -------------------------------------------------------------------------------- /contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLH-Fellowship/stackoverflow-cli/HEAD/contributing.md -------------------------------------------------------------------------------- /images/cli-help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLH-Fellowship/stackoverflow-cli/HEAD/images/cli-help.png -------------------------------------------------------------------------------- /images/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLH-Fellowship/stackoverflow-cli/HEAD/images/cover.png -------------------------------------------------------------------------------- /images/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLH-Fellowship/stackoverflow-cli/HEAD/images/demo.gif -------------------------------------------------------------------------------- /images/flags-demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLH-Fellowship/stackoverflow-cli/HEAD/images/flags-demo.gif -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLH-Fellowship/stackoverflow-cli/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLH-Fellowship/stackoverflow-cli/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLH-Fellowship/stackoverflow-cli/HEAD/readme.md -------------------------------------------------------------------------------- /test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLH-Fellowship/stackoverflow-cli/HEAD/test.js -------------------------------------------------------------------------------- /utils/cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLH-Fellowship/stackoverflow-cli/HEAD/utils/cli.js -------------------------------------------------------------------------------- /utils/end.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLH-Fellowship/stackoverflow-cli/HEAD/utils/end.js -------------------------------------------------------------------------------- /utils/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLH-Fellowship/stackoverflow-cli/HEAD/utils/init.js -------------------------------------------------------------------------------- /utils/results.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLH-Fellowship/stackoverflow-cli/HEAD/utils/results.js -------------------------------------------------------------------------------- /utils/switch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLH-Fellowship/stackoverflow-cli/HEAD/utils/switch.js --------------------------------------------------------------------------------