Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit fcc1e59

Browse files
committedOct 30, 2024·
Merge branch 'master' into open_the_popup_portrait_on_a_specific_page
2 parents 857ba61 + 7a9f947 commit fcc1e59

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

64 files changed

+937
-308
lines changed
 

‎.github/workflows/static.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,4 +69,4 @@ replace_string:
6969
steps:
7070
- name: Deploy to GitHub Pages
7171
id: deployment
72-
uses: actions/deploy-pages@v4
72+
uses: actions/deploy-pages@v4

‎.pre-commit-config.yaml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
ci:
2+
autoupdate_schedule: monthly
3+
autofix_prs: true
4+
5+
repos:
6+
# Codespell hook configuration
7+
- repo: https://github.com/codespell-project/codespell
8+
rev: v2.3.0
9+
hooks:
10+
- id: codespell
11+
name: Spell Check with Codespell
12+
args:
13+
- '--write-changes'
14+
- '--ignore-words-list=cppp,normale'
15+
- '--builtin=en-GB_to_en-US'
16+
# Exclude package-lock.json and all .svg files
17+
exclude: 'package-lock\.json|\.svg$'

0 commit comments

Comments
 (0)
Please sign in to comment.