Skip to content

Commit 68c6340

Browse files
committed
fix sort issues due to different collation on github
1 parent 4dae027 commit 68c6340

File tree

2 files changed

+24
-24
lines changed

2 files changed

+24
-24
lines changed

.gitignore

Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,28 @@
1-
__marimo__/
2-
__pycache__/
3-
__pypackages__/
1+
*$py.class
2+
*.cover
3+
*.egg
4+
*.egg-info/
5+
*.log
6+
*.manifest
7+
*.mo
8+
*.pot
9+
*.py.cover
10+
*.py[codz]
11+
*.sage.py
12+
*.so
13+
*.spec
14+
*.sqlite3
15+
*.sqlite3-journal
16+
*~
17+
.DS_Store
18+
.Python
419
.abstra/
520
.cache
621
.coverage
722
.coverage.*
823
.cursorignore
924
.cursorindexingignore
1025
.dmypy.json
11-
.DS_Store
1226
.eggs/
1327
.env
1428
.envrc
@@ -24,7 +38,6 @@ __pypackages__/
2438
.pypirc
2539
.pyre/
2640
.pytest_cache/
27-
.Python
2841
.pytype/
2942
.ropeproject
3043
.ruff_cache/
@@ -35,23 +48,12 @@ __pypackages__/
3548
.venv
3649
.vscode
3750
.webassets-cache
38-
*.cover
39-
*.egg
40-
*.egg-info/
41-
*.log
42-
*.manifest
43-
*.mo
44-
*.pot
45-
*.py.cover
46-
*.py[codz]
47-
*.sage.py
48-
*.so
49-
*.spec
50-
*.sqlite3
51-
*.sqlite3-journal
52-
*~
53-
*$py.class
5451
/site
52+
ENV/
53+
MANIFEST
54+
__marimo__/
55+
__pycache__/
56+
__pypackages__/
5557
archive
5658
build/
5759
celerybeat-schedule
@@ -68,14 +70,12 @@ downloads/
6870
eggs/
6971
env.bak/
7072
env/
71-
ENV/
7273
htmlcov/
7374
instance/
7475
ipython_config.py
7576
lib/
7677
lib64/
7778
local_settings.py
78-
MANIFEST
7979
marimo/_lsp/
8080
marimo/_static/
8181
nosetests.xml

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ repos:
3030
hooks:
3131
- id: canonicalize-gitignore
3232
name: Sort unique .gitignore
33-
entry: sort -u -o .gitignore .gitignore
33+
entry: sh -c 'LC_ALL=C sort -u -o .gitignore .gitignore'
3434
language: system
3535
files: ^\.gitignore$
3636

0 commit comments

Comments
 (0)