Skip to content

Commit

Permalink
Merge pull request #59 from jakowenko/beta
Browse files Browse the repository at this point in the history
v0.7.0
  • Loading branch information
jakowenko authored Jun 28, 2021
2 parents 9de7e89 + 5e27bca commit c2fd8dd
Show file tree
Hide file tree
Showing 33 changed files with 5,779 additions and 3,754 deletions.
28 changes: 28 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
module.exports = {
root: true,
env: {
amd: true,
},
extends: ["airbnb-base", "plugin:prettier/recommended"],
plugins: ["prettier"],
rules: {
"linebreak-style": 0,
"no-console": 0,
"no-plusplus": 0,
"max-len": 0,
"no-return-assign": 0,
"no-await-in-loop": 0,
indent: 0, // Allowing prettier to handle this
"consistent-return": 0,
"comma-dangle": 0,
"operator-linebreak": 0,
"implicit-arrow-linebreak": 0,
"function-paren-newline": 0,
"object-curly-newline": 0,
"newline-per-chained-call": 0,
"prettier/prettier": "error",
"no-param-reassign": 0,
"no-restricted-syntax": 0,
"no-nested-ternary": 0,
},
};
4 changes: 4 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,10 @@ jobs:
echo "TAG=latest" >> $GITHUB_ENV
echo "ARCH=linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64" >> $GITHUB_ENV
echo "VERSION=${{steps.version.outputs.prop}}" >> $GITHUB_ENV
- name: Version with SHA-7
run: |
cd ./api && npm version ${{steps.version.outputs.prop}}-$(echo ${GITHUB_SHA} | cut -c1-7)
cd ../frontend && npm version ${{steps.version.outputs.prop}}-$(echo ${GITHUB_SHA} | cut -c1-7)
- name: Set up QEMU
uses: docker/setup-qemu-action@v1
- name: Set up Docker Buildx
Expand Down
1 change: 1 addition & 0 deletions .husky/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
_
1 change: 1 addition & 0 deletions .husky/commit-msg
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
npx --no-install commitlint --edit $1
6 changes: 6 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"tabWidth": 2,
"printWidth": 100,
"singleQuote": true,
"trailingComma": "es5"
}
215 changes: 156 additions & 59 deletions README.md

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions api/.eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
module.exports = {
root: true,
env: {
amd: true,
},
Expand Down
Loading

0 comments on commit c2fd8dd

Please sign in to comment.