Skip to content
This repository was archived by the owner on Oct 15, 2024. It is now read-only.

Commit 80897b2

Browse files
committed
Bundle /python/scripts/**.
1 parent 58a3e2c commit 80897b2

File tree

19 files changed

+16
-11
lines changed

19 files changed

+16
-11
lines changed

.github/dependabot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ updates:
66
interval: 'monthly'
77
target-branch: 'develop'
88
- package-ecosystem: 'pip'
9-
directory: '/src/python/'
9+
directory: '/python'
1010
schedule:
1111
interval: 'monthly'
1212
target-branch: 'develop'

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
runs-on: ubuntu-latest
4949
defaults:
5050
run:
51-
working-directory: src/python/
51+
working-directory: python/
5252
steps:
5353
- name: Checkout
5454
uses: actions/checkout@v2
@@ -78,7 +78,7 @@ jobs:
7878
runs-on: ${{ matrix.os }}
7979
defaults:
8080
run:
81-
working-directory: src/python/
81+
working-directory: python/
8282
steps:
8383
- name: Checkout
8484
uses: actions/checkout@v2

.vscode/settings.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@
1313
},
1414
"typescript.tsc.autoDetect": "off",
1515
"typescript.preferences.importModuleSpecifier": "relative",
16-
"python.pythonPath": "./src/python/.venv/bin/python",
16+
"python.pythonPath": "./python/.venv/bin/python",
1717
"python.linting.enabled": true,
1818
"python.linting.pylintEnabled": true,
19-
"python.linting.pylintArgs": ["--rcfile=src/python/pylintrc"],
19+
"python.linting.pylintArgs": ["--rcfile=python/pylintrc"],
2020
"python.linting.mypyEnabled": true,
2121
"python.linting.pylintUseMinimalCheckers": false,
22-
"python.analysis.extraPaths": ["./src/python/scripts"],
22+
"python.analysis.extraPaths": ["./python/scripts"],
2323
"[python]": {
2424
"editor.defaultFormatter": "ms-python.python"
2525
}

.vscodeignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,11 @@ src/**
88
**/.eslintrc.json
99
**/*.map
1010
**/*.ts
11+
12+
# Prettier
1113
.prettierignore
1214
.prettierrc.json
15+
16+
# Python
17+
python/**
18+
!python/scripts/**.py
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)