-
Notifications
You must be signed in to change notification settings - Fork 0
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 #2 from DataShades/storage
Storage
- Loading branch information
Showing
95 changed files
with
9,661 additions
and
484 deletions.
There are no files selected for viewing
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,13 @@ | ||
# EditorConfig http://EditorConfig.org | ||
|
||
# Project Root | ||
root = true | ||
|
||
# Default Code Style | ||
[*] | ||
charset = utf-8 | ||
end_of_line = lf | ||
indent_size = 4 | ||
indent_style = space | ||
insert_final_newline = true | ||
trim_trailing_whitespace = true |
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,38 @@ | ||
default_install_hook_types: | ||
- pre-commit | ||
- pre-push | ||
- commit-msg | ||
|
||
repos: | ||
- repo: https://github.com/pre-commit/pre-commit-hooks | ||
rev: v4.5.0 | ||
hooks: | ||
# - id: check-yaml | ||
- id: end-of-file-fixer | ||
stages: [pre-commit] | ||
- id: trailing-whitespace | ||
stages: [pre-commit] | ||
- id: debug-statements | ||
stages: [pre-push] | ||
|
||
## Isort | ||
- repo: https://github.com/pycqa/isort | ||
rev: 5.13.2 | ||
hooks: | ||
- id: isort | ||
name: isort | ||
stages: [pre-commit] | ||
|
||
## Black | ||
- repo: https://github.com/psf/black | ||
rev: 24.2.0 | ||
hooks: | ||
- id: black | ||
stages: [pre-commit] | ||
|
||
## Ruff | ||
- repo: https://github.com/charliermarsh/ruff-pre-commit | ||
rev: v0.3.0 | ||
hooks: | ||
- id: ruff | ||
stages: [pre-commit] |
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,3 +1,6 @@ | ||
License | ||
+++++++ | ||
|
||
GNU AFFERO GENERAL PUBLIC LICENSE | ||
Version 3, 19 November 2007 | ||
|
||
|
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,5 +1,6 @@ | ||
include README.rst | ||
include LICENSE | ||
include requirements.txt | ||
recursive-include ckanext *.html *.json *.js *.less *.css *.mo *.yml *.yaml | ||
recursive-include ckanext/files *.html *.json *.js *.less *.css *.mo *.yml *.config *.yaml | ||
recursive-include ckanext/file_manager *.html *.json *.js *.less *.css *.mo *.yml *.config *.yaml | ||
recursive-include ckanext/files/migration *.ini *.py *.mako |
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.