├── .editorconfig ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── links-checker.yml │ ├── readme-check.yml │ └── stale.yml ├── .gitignore ├── .husky └── pre-push ├── .markdownlint.json ├── .prettierrc ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── data └── images │ ├── logo-front-end-checklist.jpg │ └── priority │ ├── high.svg │ ├── low.svg │ └── medium.svg ├── lychee.toml ├── package.json └── pnpm-lock.yaml /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepumandal/Front-End-Checklist/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepumandal/Front-End-Checklist/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepumandal/Front-End-Checklist/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepumandal/Front-End-Checklist/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/links-checker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepumandal/Front-End-Checklist/HEAD/.github/workflows/links-checker.yml -------------------------------------------------------------------------------- /.github/workflows/readme-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepumandal/Front-End-Checklist/HEAD/.github/workflows/readme-check.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepumandal/Front-End-Checklist/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepumandal/Front-End-Checklist/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-push: -------------------------------------------------------------------------------- 1 | pnpm format:fix 2 | -------------------------------------------------------------------------------- /.markdownlint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepumandal/Front-End-Checklist/HEAD/.markdownlint.json -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepumandal/Front-End-Checklist/HEAD/.prettierrc -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepumandal/Front-End-Checklist/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepumandal/Front-End-Checklist/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepumandal/Front-End-Checklist/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepumandal/Front-End-Checklist/HEAD/README.md -------------------------------------------------------------------------------- /data/images/logo-front-end-checklist.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepumandal/Front-End-Checklist/HEAD/data/images/logo-front-end-checklist.jpg -------------------------------------------------------------------------------- /data/images/priority/high.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepumandal/Front-End-Checklist/HEAD/data/images/priority/high.svg -------------------------------------------------------------------------------- /data/images/priority/low.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepumandal/Front-End-Checklist/HEAD/data/images/priority/low.svg -------------------------------------------------------------------------------- /data/images/priority/medium.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepumandal/Front-End-Checklist/HEAD/data/images/priority/medium.svg -------------------------------------------------------------------------------- /lychee.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepumandal/Front-End-Checklist/HEAD/lychee.toml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepumandal/Front-End-Checklist/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepumandal/Front-End-Checklist/HEAD/pnpm-lock.yaml --------------------------------------------------------------------------------