Skip to content

Commit

Permalink
Initial commit for SDMX Hackathon submission.
Browse files Browse the repository at this point in the history
  • Loading branch information
stephprobst committed Sep 28, 2023
1 parent a82fd23 commit 0dab4a8
Show file tree
Hide file tree
Showing 117 changed files with 29,009 additions and 201 deletions.
9 changes: 9 additions & 0 deletions .flake8
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
52 changes: 52 additions & 0 deletions .gitignore
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
31 changes: 31 additions & 0 deletions .pylintrc
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,
25 changes: 25 additions & 0 deletions .vscode/launch.json
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
}
]
}
16 changes: 16 additions & 0 deletions .vscode/settings.json
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 added LICENCE.pdf
Binary file not shown.
201 changes: 0 additions & 201 deletions LICENSE

This file was deleted.

Loading

0 comments on commit 0dab4a8

Please sign in to comment.