From 8659e51177833b75c46dcff89c85e583fe292913 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A9r=C3=A8?= Date: Mon, 9 Oct 2023 23:45:49 -0700 Subject: [PATCH] Remove linter --- .github/workflows/linter.yml | 44 ------------------------------------ 1 file changed, 44 deletions(-) delete mode 100644 .github/workflows/linter.yml diff --git a/.github/workflows/linter.yml b/.github/workflows/linter.yml deleted file mode 100644 index 8c4daf6..0000000 --- a/.github/workflows/linter.yml +++ /dev/null @@ -1,44 +0,0 @@ -name: Lint Code Base - -on: - pull_request: - branches: - - main - push: - branches-ignore: - - main - -jobs: - lint: - name: Lint Code Base - runs-on: ubuntu-latest - - permissions: - contents: read - packages: read - statuses: write - - steps: - - name: Checkout - id: checkout - uses: actions/checkout@v4 - - - name: Setup Node.js - id: setup-node - uses: actions/setup-node@v3 - with: - node-version: 18 - cache: npm - - - name: Install Dependencies - id: install - run: npm ci - - - name: Lint Code Base - id: super-linter - uses: super-linter/super-linter/slim@v5 - env: - DEFAULT_BRANCH: main - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - TYPESCRIPT_DEFAULT_STYLE: prettier - VALIDATE_JSCPD: false