Skip to content

Commit 63ba040

Browse files
committed
fix 'needless argument' error
1 parent dfe8efa commit 63ba040

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,10 @@ jobs:
3939
# Also ignore github.com because we have too many and they eventually return 429
4040
bundle exec htmlproofer ./_site/\
4141
--only-4xx\
42-
--ignore-empty-alt=true\
43-
--allow-hash-href=true\
44-
--enforce-https=false\
45-
--ignore-missing-alt=true\
42+
--ignore-empty-alt\
43+
--allow-hash-href\
44+
--no-enforce-https\
45+
--ignore-missing-alt\
4646
--swap-urls "https\:\/\/scala\.epfl\.ch:"\
4747
--ignore-urls "/twitter.com/,/x.com/,/github.com/"\
4848
--cache '{ "timeframe": { "external": "30d" } }'

Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@ gem 'github-pages'
33
gem 'webrick'
44
#
55
gem 'html-proofer'
6-
# gem 'html-proofer' # link-checking: bundle exec htmlproofer ./_site/ --only-4xx --ignore-empty-alt=true --allow-hash-href=true
6+
# gem 'html-proofer' # link-checking: bundle exec htmlproofer ./_site/ --only-4xx --ignore-empty-alt --allow-hash-href
77
gem 'jekyll-redirect-from'

0 commit comments

Comments
 (0)