diff --git a/.github/workflows/ci-pipeline.yml b/.github/workflows/ci-pipeline.yml index dc13e3e..f9b8309 100644 --- a/.github/workflows/ci-pipeline.yml +++ b/.github/workflows/ci-pipeline.yml @@ -43,7 +43,7 @@ jobs: path: | node_modules key: ${{ runner.os }}-node-${{ hashFiles('package-lock.json') }} - - name: Run Biome check + - name: Run Eslint check run: npm run lint prettier: diff --git a/biome.json b/biome.json deleted file mode 100644 index 08bfc3a..0000000 --- a/biome.json +++ /dev/null @@ -1,61 +0,0 @@ -{ - "$schema": "https://biomejs.dev/schemas/1.9.4/schema.json", - "organizeImports": { - "enabled": true - }, - "linter": { - "enabled": true, - "rules": { - "recommended": true, - "nursery": { - "useSortedClasses": "info" - }, - "suspicious": { - "noExplicitAny": "warn" - } - } - }, - "formatter": { - "enabled": true, - "indentStyle": "space", - "indentWidth": 2, - "lineWidth": 128, - "useEditorconfig": true - }, - "files": { - "ignore": ["node_modules", ".git", "dist"] - }, - "javascript": { - "formatter": { - "quoteStyle": "single", - "semicolons": "asNeeded" - } - }, - "assists": { - "actions": { - "source": { - "sortJsxProps": "on" - } - } - }, - "vcs": { - "enabled": true, - "clientKind": "git", - "defaultBranch": "main", - "root": ".", - "useIgnoreFile": true - }, - "overrides": [ - { - "include": ["*.astro"], - "linter": { - "rules": { - "style": { - "useConst": "off", - "useImportType": "off" - } - } - } - } - ] -}