-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Initial commit for SDMX Hackathon submission.
- Loading branch information
1 parent
a82fd23
commit 0dab4a8
Showing
117 changed files
with
29,009 additions
and
201 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,9 @@ | ||
[flake8] | ||
max-line-length = 88 | ||
ignore = | ||
# W503 violates spec https://github.com/PyCQA/pycodestyle/issues/513 | ||
W503 | ||
# W504 has issues https://github.com/OCA/maintainer-quality-tools/issues/545 | ||
W504 | ||
# Black creates whitespace before colon | ||
E203 |
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,52 @@ | ||
.DS_Store | ||
.huskyrc.json | ||
out | ||
log.log | ||
**/node_modules | ||
*.pyc | ||
*.vsix | ||
**/.vscode/.ropeproject/** | ||
**/testFiles/**/.cache/** | ||
*.noseids | ||
.nyc_output | ||
.vscode-test | ||
__pycache__ | ||
npm-debug.log | ||
**/.mypy_cache/** | ||
!yarn.lock | ||
coverage/ | ||
cucumber-report.json | ||
**/.vscode-test/** | ||
**/.vscode test/** | ||
**/.vscode-smoke/** | ||
**/.venv*/ | ||
port.txt | ||
precommit.hook | ||
pythonFiles/lib/** | ||
pythonFiles/get-pip.py | ||
debug_coverage*/** | ||
languageServer/** | ||
languageServer.*/** | ||
bin/** | ||
obj/** | ||
.pytest_cache | ||
tmp/** | ||
.python-version | ||
.vs/ | ||
test-results*.xml | ||
xunit-test-results.xml | ||
build/ci/performance/performance-results.json | ||
!build/ | ||
debug*.log | ||
debugpy*.log | ||
pydevd*.log | ||
nodeLanguageServer/** | ||
nodeLanguageServer.*/** | ||
dist/** | ||
# translation files | ||
*.xlf | ||
package.nls.*.json | ||
l10n/ | ||
codequality_reports | ||
.coverage | ||
docs_src/_build |
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,31 @@ | ||
[BASIC] | ||
good-names= | ||
i, | ||
n, | ||
e, | ||
f, | ||
logger, | ||
df, | ||
# yaml file concepts | ||
DashID, | ||
Rows, | ||
legendConcept, | ||
Row, | ||
chartType, | ||
Title, | ||
Subtitle, | ||
Unit, | ||
unitLoc, | ||
UnitShow, | ||
UnitIcon, | ||
Decimals, | ||
LabelsYN, | ||
legendConcept, | ||
legendLoc, | ||
xAxisConcept, | ||
yAxisConcept, | ||
downloadYN, | ||
dsdLink, | ||
dataLink, | ||
metadataLink, | ||
DATA, |
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,25 @@ | ||
{ | ||
// Use IntelliSense to learn about possible attributes. | ||
// Hover to view descriptions of existing attributes. | ||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"name": "Python: Flask", | ||
"type": "python", | ||
"request": "launch", | ||
"module": "flask", | ||
"env": { | ||
"FLASK_APP": "src/app.py", | ||
"FLASK_DEBUG": "1" | ||
}, | ||
"args": [ | ||
"run", | ||
"--no-debugger", | ||
"--no-reload" | ||
], | ||
"jinja": true, | ||
"justMyCode": 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
{ | ||
"python.defaultInterpreterPath": "C:\\Users\\${env:USERNAME}\\envs\\SDMX-dashboard-generator\\Scripts\\python.exe", | ||
"python.linting.enabled": true, | ||
"python.linting.pylintEnabled": true, | ||
"python.linting.pylintPath": "C:\\Users\\${env:USERNAME}\\envs\\SDMX-dashboard-generator\\Scripts\\pylint.exe", | ||
"editor.rulers": [ | ||
100 | ||
], | ||
"python.testing.unittestEnabled": false, | ||
"python.testing.pytestEnabled": true, | ||
"python.testing.autoTestDiscoverOnSaveEnabled": false, | ||
"python.testing.pytestPath": "C:\\Users\\${env:USERNAME}\\envs\\SDMX-dashboard-generator\\Scripts\\pytest.exe", | ||
"python.testing.pytestArgs": [ | ||
"test" | ||
], | ||
} |
Binary file not shown.
Oops, something went wrong.