diff --git a/.github/workflows/vmui.yml b/.github/workflows/vmui.yml index c114f047c..d4db398bd 100644 --- a/.github/workflows/vmui.yml +++ b/.github/workflows/vmui.yml @@ -24,9 +24,7 @@ jobs: vmui-checks: name: VMUI Checks (lint, test, typecheck) permissions: - checks: write contents: read - pull-requests: read runs-on: ubuntu-latest steps: - name: Code checkout @@ -69,12 +67,6 @@ jobs: run: make vmui-typecheck continue-on-error: true - - name: Annotate Code Linting Results - uses: ataylorme/eslint-annotate-action@d57a1193d4c59cbfbf3f86c271f42612f9dbd9e9 # 3.0.0 - with: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - report-json: app/vmui/packages/vmui/vmui-lint-report.json - - name: Check overall status run: | echo "Lint status: ${{ steps.lint.outcome }}" diff --git a/app/vmui/packages/vmui/package.json b/app/vmui/packages/vmui/package.json index ae1a1cce6..3b70c6ed1 100644 --- a/app/vmui/packages/vmui/package.json +++ b/app/vmui/packages/vmui/package.json @@ -7,7 +7,7 @@ "scripts": { "start": "vite", "build": "vite build", - "lint": "eslint --output-file vmui-lint-report.json --format json 'src/**/*.{ts,tsx}'", + "lint": "eslint --format stylish 'src/**/*.{ts,tsx}'", "lint:fix": "eslint 'src/**/*.{ts,tsx}' --fix", "preview": "vite preview", "typecheck": "tsc --noEmit",