Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor: small improvements #664

Merged
merged 1 commit into from
Oct 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
open_collective: front-end-checklist
github: thedaviddias
ko_fi: thedaviddias
patreon: thedaviddias
buy_me_a_coffee: thedaviddias
thanks_dev: thedaviddias
8 changes: 1 addition & 7 deletions .github/workflows/readme-check.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,9 @@
name: Readme Check

on:
push:
paths:
- './README.md'
pull_request:
paths:
- './README.md'
- 'README.md'

env:
HUSKY: 0
Expand Down Expand Up @@ -35,9 +32,6 @@ jobs:
- name: Check Markdown formatting
run: pnpm format:check

- name: Lint Markdown
run: pnpm lint:md

- name: Link Checker
uses: lycheeverse/lychee-action@v2.0.2
with:
Expand Down
5 changes: 1 addition & 4 deletions .husky/pre-push
Original file line number Diff line number Diff line change
@@ -1,4 +1 @@
#!/usr/bin/env sh
. "$(dirname -- "$0")/_/husky.sh"

pnpm lint:md && npm format:fix
pnpm format:fix
11 changes: 3 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,8 @@ HTML page to production.
- [🎮 Front-End Performance Checklist](https://github.com/thedaviddias/Front-End-Performance-Checklist#---------front-end-performance-checklist-)
- [💎 Front-End Design Checklist](https://github.com/thedaviddias/Front-End-Design-Checklist#front-end-design-checklist)

---

## ⭐️ I've just launched a new curated list for [indie developers](https://github.com/thedaviddias/indie-dev-toolkit), feel free to check it out! ⭐️

---
> [!TIP]
> ⭐️ I've just launched a new curated list for [indie developers](https://github.com/thedaviddias/indie-dev-toolkit), feel free to check it out! ⭐️

## 📚 Table of Contents

Expand Down Expand Up @@ -439,7 +436,6 @@ considered if you target a particular presence on those and want to ensure the d
- 🛠 [Am I Responsive?](http://ami.responsivedesign.is/)
- 🛠 [Mobile Friendly Test](https://search.google.com/test/mobile-friendly)
- 🛠 [Responsive Website Design Tester](https://responsivedesignchecker.com/)
- 🛠 [XRespond](https://xrespond.com/)

- [ ] **CSS Validator:** ![Medium][medium_img] The CSS was tested and pertinent errors were corrected.

Expand Down Expand Up @@ -482,8 +478,6 @@ considered if you target a particular presence on those and want to ensure the d
- 🛠 [Imagemin](https://github.com/imagemin/imagemin)
- 🛠 Use [ImageOptim](https://imageoptim.com/) to optimise your images for free.
- 🛠 Use [KeyCDN Image Processing](https://www.keycdn.com/support/image-processing) for image optimization in real time.
- 🛠 Use [Kraken.io](https://kraken.io/web-interface) awesome alternative for both png and jpg optimization. Up to 1mb
per files on free plan.
- 🛠 [TinyPNG](https://tinypng.com/) optimises png, apng (animated png) and jpg images with very small loss in quality.
Free and paid version available.
- 🛠 [ZorroSVG](http://quasimondo.com/ZorroSVG/) jpg-like compression for transparent images using svg masking.
Expand Down Expand Up @@ -828,6 +822,7 @@ The Front-End Checklist is also available in other languages. Thanks for all tra
If you have any question or suggestion, don't hesitate to reach me on X:

- [X (formerly Twitter)](https://ddias.link/x)
- [Chat on Discord](https://ddias.link/discord)

## Contributors

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"description": "The perfect Front-End Checklist for modern websites and meticulous developers",
"scripts": {
"format:check": "prettier --check README.md",
"format:fix": "markdownlint README.md && prettier --write README.md",
"format:fix": "prettier --write README.md && markdownlint README.md",
"prepare": "husky || true"
},
"keywords": [
Expand Down