├── .eslintignore ├── .eslintrc.js ├── .github ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .npmignore ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── FYI.md ├── LICENSE.md ├── README.md ├── __checks__ ├── dev.test.js └── docs.test.js ├── bin └── index.js ├── boilerplate ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE.md ├── LICENSE.md ├── PULL_REQUEST_TEMPLATE.md └── README.md ├── jest.config.js ├── package.json └── src ├── argv.js ├── index.js └── index.test.js /.eslintignore: -------------------------------------------------------------------------------- 1 | .git 2 | coverage 3 | dist 4 | -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/opensource-check/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/opensource-check/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/opensource-check/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/opensource-check/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .github 3 | coverage 4 | src -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/opensource-check/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/opensource-check/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/opensource-check/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /FYI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/opensource-check/HEAD/FYI.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/opensource-check/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/opensource-check/HEAD/README.md -------------------------------------------------------------------------------- /__checks__/dev.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/opensource-check/HEAD/__checks__/dev.test.js -------------------------------------------------------------------------------- /__checks__/docs.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/opensource-check/HEAD/__checks__/docs.test.js -------------------------------------------------------------------------------- /bin/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/opensource-check/HEAD/bin/index.js -------------------------------------------------------------------------------- /boilerplate/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/opensource-check/HEAD/boilerplate/CHANGELOG.md -------------------------------------------------------------------------------- /boilerplate/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/opensource-check/HEAD/boilerplate/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /boilerplate/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/opensource-check/HEAD/boilerplate/CONTRIBUTING.md -------------------------------------------------------------------------------- /boilerplate/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/opensource-check/HEAD/boilerplate/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /boilerplate/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/opensource-check/HEAD/boilerplate/LICENSE.md -------------------------------------------------------------------------------- /boilerplate/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/opensource-check/HEAD/boilerplate/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /boilerplate/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/opensource-check/HEAD/boilerplate/README.md -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/opensource-check/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/opensource-check/HEAD/package.json -------------------------------------------------------------------------------- /src/argv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/opensource-check/HEAD/src/argv.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/opensource-check/HEAD/src/index.js -------------------------------------------------------------------------------- /src/index.test.js: -------------------------------------------------------------------------------- 1 | it("todo", () => {}); 2 | --------------------------------------------------------------------------------