diff --git a/.github/workflows/vmui.yml b/.github/workflows/vmui.yml index c3b2d8a3df..be32fbb946 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 @@ -68,12 +66,6 @@ jobs: env: VMUI_SKIP_INSTALL: 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 9c7d41efc6..829604e27f 100644 --- a/app/vmui/packages/vmui/package.json +++ b/app/vmui/packages/vmui/package.json @@ -9,7 +9,7 @@ "start": "vite", "start:playground": "cross-env PLAYGROUND=LOGS npm run start", "build": "vite build", - "lint": "eslint --output-file vmui-lint-report.json --format json 'src/**/*.{ts,tsx}'", + "lint": "eslint --format stylish 'src/**/*.{ts,tsx}'", "lint:local": "eslint --ext .ts,.tsx -f stylish src", "lint:fix": "eslint 'src/**/*.{ts,tsx}' --fix", "gen:logsql-pipes": "tsx --tsconfig scripts/tsconfig.json scripts/extractPipes.ts",