├── .editorconfig ├── .github ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md └── data └── images ├── logo-front-end-checklist.jpg └── priority ├── high.svg ├── low.svg └── medium.svg /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congchu/Front-End-Checklist/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congchu/Front-End-Checklist/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congchu/Front-End-Checklist/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congchu/Front-End-Checklist/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congchu/Front-End-Checklist/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congchu/Front-End-Checklist/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congchu/Front-End-Checklist/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congchu/Front-End-Checklist/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congchu/Front-End-Checklist/HEAD/README.md -------------------------------------------------------------------------------- /data/images/logo-front-end-checklist.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congchu/Front-End-Checklist/HEAD/data/images/logo-front-end-checklist.jpg -------------------------------------------------------------------------------- /data/images/priority/high.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congchu/Front-End-Checklist/HEAD/data/images/priority/high.svg -------------------------------------------------------------------------------- /data/images/priority/low.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congchu/Front-End-Checklist/HEAD/data/images/priority/low.svg -------------------------------------------------------------------------------- /data/images/priority/medium.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congchu/Front-End-Checklist/HEAD/data/images/priority/medium.svg --------------------------------------------------------------------------------