diff --git a/.github/workflows/editorconfig.yaml b/.github/workflows/editorconfig.yaml index be95e4a..d753f0e 100644 --- a/.github/workflows/editorconfig.yaml +++ b/.github/workflows/editorconfig.yaml @@ -19,6 +19,11 @@ jobs: - name: Checkout Repository uses: actions/checkout@v4 + - name: Set Up Node + uses: actions/setup-node@v4 + with: + node-version: latest + - name: Set Up Bun uses: oven-sh/setup-bun@v2 diff --git a/package.json b/package.json index c1e201a..5e70194 100644 --- a/package.json +++ b/package.json @@ -90,7 +90,7 @@ "@typescript-eslint/eslint-plugin": "^7.18.0", "@typescript-eslint/parser": "^7.18.0", "conventional-changelog-conventionalcommits": "^8.0.0", - "editorconfig-checker": "^5.1.9", + "editorconfig-checker": "^6.0.1", "eslint": "^8.57.1", "eslint-config-airbnb": "^19.0.4", "eslint-config-airbnb-typescript": "^18.0.0", diff --git a/src/utils/create-at-rule/parameters.ts b/src/utils/create-at-rule/parameters.ts index d39a0d3..f2289dd 100644 --- a/src/utils/create-at-rule/parameters.ts +++ b/src/utils/create-at-rule/parameters.ts @@ -1,5 +1,6 @@ type Parameters = { name: string; + h: string; hasBlock?: boolean; };