move to root folder

pull/8572/head
topce 2021-04-05 10:58:05 +02:00
parent 1ab7e0960b
commit b1e18afa65
4 changed files with 10 additions and 15 deletions

View File

@ -9,13 +9,8 @@ on:
- 'translation/dest/**'
jobs:
format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- run: yarn install && yarn run check-format
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- run: cd ui && yarn install && yarn run lint
- run: yarn install && yarn run check-format && yarn run lint

View File

@ -25,9 +25,17 @@
"prettier": "2.2.1",
"xml2js": "0.4.19"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.20.0",
"@typescript-eslint/parser": "^4.20.0",
"eslint": "^7.23.0",
"eslint-config-prettier": "^8.1.0"
},
"scripts": {
"format": "prettier --write .",
"check-format": "prettier --check ."
"check-format": "prettier --check .",
"lint": "eslint . --ext .ts --format visualstudio",
"lint-fix": "eslint . --ext .ts --fix"
},
"workspaces": [
"ui",

View File

@ -12,10 +12,6 @@
"breakpoint-sass": "^2.7.1"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.20.0",
"@typescript-eslint/parser": "^4.20.0",
"eslint": "^7.23.0",
"eslint-config-prettier": "^8.1.0",
"glob": "^7.1.3",
"gulp": "^4.0.2",
"gulp-autoprefixer": "^7.0.1",
@ -27,9 +23,5 @@
"gulp-sass-inheritance": "^1.1",
"gulp-size": "^3",
"gulp-sourcemaps": "^3.0.0"
},
"scripts": {
"lint": "eslint . --ext .ts --format visualstudio",
"lint-fix": "eslint . --ext .ts --fix"
}
}