Skip to content

Commit 858e22d

Browse files
author
Maxim Uhlemann
committed
lint the whole project
1 parent 32ed2ae commit 858e22d

File tree

2 files changed

+3
-6
lines changed

2 files changed

+3
-6
lines changed

.github/workflows/action_pull_request.yml

+2-5
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,8 @@ jobs:
2727
- name: Prettier
2828
run: npm run format:check
2929

30-
- name: Lint frontend
31-
run: npm run ng:lint
32-
33-
- name: Lint server
34-
run: exit 0 # todo: add stuff
30+
- name: Lint
31+
run: npm run lint
3532

3633
- name: Test frontend
3734
run: exit 0 # todo: add stuff

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"format:check": "prettier '**/*.{js,jsx,ts,tsx,html,css,scss,json,yml,md}' --check",
1616
"format": "prettier '**/*.{js,jsx,ts,tsx,html,css,scss,json,yml,md}' --write",
1717
"ng-openapi-gen": "ng-openapi-gen --input openapi.yml --output ./src/app/core/api --indexFile=true",
18-
"lint": "ng lint",
18+
"lint": "npm run ng:lint && eslint .",
1919
"install-submodules": "git submodule update --init --recursive"
2020
},
2121
"watch": {

0 commit comments

Comments
 (0)