Skip to content

Commit

Permalink
update lint target
Browse files Browse the repository at this point in the history
  • Loading branch information
negrel committed Jan 4, 2024
1 parent 8544469 commit b929403
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 14 deletions.
3 changes: 1 addition & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,7 @@ start:

.PHONY: lint
lint:
deno lint --ignore=./static/confetti.min.js,./_fresh/
deno check ./main.ts
deno task check

.PHONY: build
build:
Expand Down
24 changes: 13 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,18 @@ Source code of https://www.bulkcompress.photos.

## Why ?

Recently, I stumbled upon [this reddit post](https://www.reddit.com/r/SideProject/comments/18u925v/i_made_a_tool_in_2_hours_it_made_me_1000_so_far) where the OP
says he made $1000 from his image compressor. He built it in 2 hours.
After carefully analyzing the website, I figured it couldn't be too hard to make
my own.
Recently, I stumbled upon
[this reddit post](https://www.reddit.com/r/SideProject/comments/18u925v/i_made_a_tool_in_2_hours_it_made_me_1000_so_far)
where the OP says he made $1000 from his image compressor. He built it in 2
hours. After carefully analyzing the website, I figured it couldn't be too hard
to make my own.

Objectives were to build the **fastest** image compressor with:
* no upload nor sign up
* no images limit
* no file size limit
* a privacy-friendly approach

- no upload nor sign up
- no images limit
- no file size limit
- a privacy-friendly approach

https://www.bulkcompress.photos is the result of my work.

Expand All @@ -37,8 +39,9 @@ make build

## Contributing

If you want to contribute to `bulkcompress.photos` to add a feature or improve the code contact
me at [[email protected]](mailto:[email protected]), open an
If you want to contribute to `bulkcompress.photos` to add a feature or improve
the code contact me at
[[email protected]](mailto:[email protected]), open an
[issue](https://github.com/negrel/bulkcompress.photos/issues) or make a
[pull request](https://github.com/negrel/bulkcompress.photos/pulls).

Expand All @@ -51,4 +54,3 @@ Please give a :star: if this project helped you!
## :scroll: License

MIT © [Alexandre Negrel](https://www.negrel.dev/)

2 changes: 1 addition & 1 deletion deno.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"lock": true,
"tasks": {
"check": "deno fmt --check && deno lint && deno check **/*.ts && deno check **/*.tsx",
"check": "deno fmt --check --ignore=./static/confetti.min.js,./_fresh/ && deno lint --ignore=./static/confetti.min.js,./_fresh/ && deno check ./main.ts",
"cli": "echo \"import '\\$fresh/src/dev/cli.ts'\" | deno run --unstable -A -",
"manifest": "deno task cli manifest $(pwd)",
"start": "deno run -A --watch=static/,routes/ dev.ts",
Expand Down

0 comments on commit b929403

Please sign in to comment.