-
Notifications
You must be signed in to change notification settings - Fork 143
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #11171 from archesproject/dev/7.6.x
Update with latest from 7.6
- Loading branch information
Showing
518 changed files
with
223,821 additions
and
46,443 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# Set the default behavior, in case people don't have core.autocrlf set. | ||
* text=auto | ||
|
||
# Known binary formats | ||
*.png binary | ||
*.jpg binary | ||
*.ico binary | ||
*.gif binary | ||
*.ttf binary | ||
*.woff binary | ||
*.woff2 binary |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
--- | ||
repos: | ||
|
||
- repo: https://github.com/psf/black | ||
rev: 24.4.2 | ||
hooks: | ||
- id: black | ||
args: [--quiet] | ||
exclude: node_modules | ||
|
||
- repo: local | ||
hooks: | ||
- id: prettier | ||
name: prettier | ||
entry: npm run prettier:fix | ||
language: system | ||
files: arches/app/src | ||
- id: eslint | ||
name: eslint | ||
entry: npm run eslint:fix | ||
language: system | ||
files: arches/app/src | ||
- id: typescript | ||
name: typescript | ||
entry: npm run ts:check | ||
language: system | ||
types: [ | ||
"ts", | ||
"vue", | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"singleAttributePerLine": true | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,28 @@ | ||
recursive-include arches * | ||
include README.md | ||
exclude Dockerfile | ||
exclude arches/logs/*.txt | ||
exclude arches/settings_local.py | ||
exclude .* | ||
exclude *.yml | ||
recursive-exclude .eggs * | ||
recursive-exclude .github * | ||
recursive-exclude .idea * | ||
recursive-exclude docker * | ||
recursive-exclude tests * | ||
recursive-exclude docs * | ||
recursive-exclude virtualenv * | ||
recursive-exclude arches/elasticsearch * | ||
recursive-exclude arches/uploadedfiles * | ||
recursive-exclude arches/tileserver * | ||
recursive-exclude arches/app/media/packages * | ||
recursive-exclude arches/app/media/js/docs * | ||
global-exclude *.log | ||
global-exclude *.pyc | ||
global-exclude *.zip | ||
global-exclude *.DS_Store | ||
global-exclude *.orig | ||
recursive-include arches * | ||
include README.md | ||
exclude Dockerfile | ||
exclude manage.py | ||
exclude arches/logs/*.txt | ||
exclude arches/settings_local.py | ||
exclude .* | ||
exclude *.yml | ||
recursive-exclude .eggs * | ||
recursive-exclude .github * | ||
recursive-exclude .idea * | ||
recursive-exclude contributing * | ||
recursive-exclude cypress * | ||
recursive-exclude docker * | ||
recursive-exclude node_modules * | ||
recursive-exclude releases * | ||
recursive-exclude tests * | ||
recursive-exclude docs * | ||
recursive-exclude virtualenv * | ||
recursive-exclude webpack * | ||
recursive-exclude arches/uploadedfiles * | ||
recursive-exclude arches/staticfiles * | ||
recursive-exclude arches/app/media/build * | ||
global-exclude *.log | ||
global-exclude *.pyc | ||
global-exclude *.zip | ||
global-exclude *.DS_Store | ||
global-exclude *.orig |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.