├── .eslintrc ├── .github └── workflows │ └── push.yml ├── .gitignore ├── .npmrc ├── CHANGELOG.md ├── license ├── logo.png ├── package.json ├── readme.md ├── renovate.json ├── src └── index.ts ├── test.js ├── tsconfig.json └── typings └── stylelint-formatter-pretty.d.ts /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hipstersmoothie/create-check/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/workflows/push.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hipstersmoothie/create-check/HEAD/.github/workflows/push.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | yarn.lock 3 | dist 4 | .env -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hipstersmoothie/create-check/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hipstersmoothie/create-check/HEAD/license -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hipstersmoothie/create-check/HEAD/logo.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hipstersmoothie/create-check/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hipstersmoothie/create-check/HEAD/readme.md -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hipstersmoothie/create-check/HEAD/renovate.json -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hipstersmoothie/create-check/HEAD/src/index.ts -------------------------------------------------------------------------------- /test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hipstersmoothie/create-check/HEAD/test.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hipstersmoothie/create-check/HEAD/tsconfig.json -------------------------------------------------------------------------------- /typings/stylelint-formatter-pretty.d.ts: -------------------------------------------------------------------------------- 1 | declare module 'stylelint-formatter-pretty'; 2 | --------------------------------------------------------------------------------