Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
migraf committed Mar 30, 2022
2 parents fc20bed + 281aa2d commit 91a7d43
Show file tree
Hide file tree
Showing 11 changed files with 4,343 additions and 239 deletions.
34 changes: 34 additions & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
{
"extends": [
"@tada5hi/eslint-config-typescript"
],
"parserOptions": {
"project": "./tsconfig.json",
"extraFileExtensions": [".vue"]
},
"rules": {
"class-methods-use-this": "off",

"no-continue": "off",
"no-underscore-dangle": "off",
"no-shadow": "off",

"import/no-cycle": [2, {
"maxDepth": 2
}],
"import/no-extraneous-dependencies": ["error", {
"devDependencies": true,
"optionalDependencies": false,
"peerDependencies": false
}],

"@typescript-eslint/no-this-alias": "off"
},
"ignorePatterns": [
"**/dist/*",
"**/*.d.ts"
],
"globals": {
"NodeJS": true
}
}
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ jobs:
node-version: [16.x]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}

Expand Down
1 change: 1 addition & 0 deletions data/leuko-expert/base/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,5 @@ RUN apt-get update -yqq && \

COPY requirements.txt /tmp/requirements.txt

RUN python3 -m pip install --upgrade pip
RUN pip3 install -r /tmp/requirements.txt
4 changes: 4 additions & 0 deletions data/leuko-expert/base/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# Leuko Expert docker image

Docker image for the Leuko Expert use case of the.

Loading

0 comments on commit 91a7d43

Please sign in to comment.