diff --git a/.github/workflows/code-style.yml b/.github/workflows/code-style.yml index 2864767..d9ceac2 100644 --- a/.github/workflows/code-style.yml +++ b/.github/workflows/code-style.yml @@ -8,4 +8,6 @@ permissions: write-all jobs: Styler: - uses: TheDragonCode/.github/.github/workflows/code-style.yml@style2 + uses: TheDragonCode/.github/.github/workflows/code-style.yml@main + with: + node: false diff --git a/biome.json b/biome.json deleted file mode 100644 index 5ae7a48..0000000 --- a/biome.json +++ /dev/null @@ -1,54 +0,0 @@ -{ - "$schema": "./node_modules/@biomejs/biome/configuration_schema.json", - "vcs": { - "enabled": false, - "clientKind": "git", - "useIgnoreFile": false - }, - "files": { - "ignoreUnknown": false, - "includes": [ - "**", - "!node_modules", - "!vendor", - "!composer.json", - "!composer.lock", - "!package.json", - "!package-lock.json" - ] - }, - "formatter": { - "enabled": true, - "indentStyle": "space", - "indentWidth": 4 - }, - "linter": { - "enabled": true, - "rules": { - "recommended": true - } - }, - "javascript": { - "formatter": { - "quoteStyle": "double" - } - }, - "json": { - "formatter": { - "enabled": true, - "bracketSpacing": true, - "expand": "always" - }, - "parser": { - "allowComments": true - } - }, - "assist": { - "enabled": true, - "actions": { - "source": { - "organizeImports": "on" - } - } - } -}