@area44/biome-config 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,3 @@
1
+ {
2
+ "extends": ["github>area44/renovate-config"]
3
+ }
@@ -0,0 +1,32 @@
1
+ name: autofix.ci
2
+
3
+ on:
4
+ pull_request:
5
+ push:
6
+ branches: ['main']
7
+ permissions:
8
+ contents: read
9
+
10
+ jobs:
11
+ autofix:
12
+ runs-on: ubuntu-latest
13
+ steps:
14
+ - name: Checkout your repository using git
15
+ uses: actions/checkout@v4
16
+
17
+ - name: Install PNPM
18
+ uses: pnpm/action-setup@v4
19
+
20
+ - name: Install dependencies
21
+ run: pnpm install --no-frozen-lockfile
22
+
23
+ - name: Setup Biome CLI
24
+ uses: biomejs/setup-biome@v2
25
+ with:
26
+ version: latest
27
+
28
+ - name: Run Biome
29
+ run: biome format --write .
30
+
31
+ - name: Run autofix.ci
32
+ uses: autofix-ci/action@v1.3
@@ -0,0 +1,24 @@
1
+ name: Release
2
+
3
+ on:
4
+ push:
5
+ tags:
6
+ - 'v*'
7
+
8
+ jobs:
9
+ release:
10
+ permissions:
11
+ contents: write
12
+ runs-on: ubuntu-latest
13
+ steps:
14
+ - uses: actions/checkout@v4
15
+ with:
16
+ fetch-depth: 0
17
+
18
+ - uses: actions/setup-node@v4
19
+ with:
20
+ node-version: lts/*
21
+
22
+ - run: npx changelogithub
23
+ env:
24
+ GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
@@ -0,0 +1,3 @@
1
+ {
2
+ "recommendations": ["biomejs.biome"]
3
+ }
@@ -0,0 +1,11 @@
1
+ {
2
+ "version": "0.2.0",
3
+ "configurations": [
4
+ {
5
+ "command": "./node_modules/.bin/astro dev",
6
+ "name": "Development server",
7
+ "request": "launch",
8
+ "type": "node-terminal"
9
+ }
10
+ ]
11
+ }
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025-PRESENT AREA44
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,25 @@
1
+ # @area44/biome-config
2
+
3
+ ## Installation
4
+
5
+ You can install `@area44/biome-config` follows:
6
+
7
+ ```sh
8
+ pnpm i -D @area44/biome-config
9
+ ```
10
+
11
+ ## Configuration
12
+
13
+ To apply the configuration, update your `biome.json` file as follows:
14
+
15
+ ```json
16
+ {
17
+ "extends": ["@area44/biome-config/biome"]
18
+ }
19
+ ```
20
+
21
+ For more details on configuring Biome, refer to the official guide [Biome Configuration Guide](https://biomejs.dev/guides/configure-biome/#share-a-configuration-file).
22
+
23
+ ## License
24
+
25
+ Released under the [MIT License](./LICENSE) © 2025-PRESENT [AREA44](https://github.com/AREA44).
package/biome.json ADDED
@@ -0,0 +1,42 @@
1
+ {
2
+ "files": {
3
+ "ignore": [
4
+ "**/*.min.js",
5
+ "**/*.min.css",
6
+ "**/dist/",
7
+ "**/out/",
8
+ "**/node_modules/",
9
+ "**/package-lock.json",
10
+ "**/pnpm-lock.yaml",
11
+ "**/yarn.lock",
12
+ "**/.github/",
13
+ "**/.netlify/",
14
+ "**/.astro/",
15
+ "**/.next/"
16
+ ]
17
+ },
18
+ "formatter": {
19
+ "enabled": true,
20
+ "formatWithErrors": false,
21
+ "indentStyle": "space",
22
+ "indentWidth": 2,
23
+ "lineEnding": "lf",
24
+ "lineWidth": 80,
25
+ "attributePosition": "auto"
26
+ },
27
+ "organizeImports": { "enabled": true },
28
+ "linter": { "enabled": true, "rules": { "recommended": true } },
29
+ "javascript": {
30
+ "formatter": {
31
+ "jsxQuoteStyle": "double",
32
+ "quoteProperties": "asNeeded",
33
+ "trailingCommas": "all",
34
+ "semicolons": "always",
35
+ "arrowParentheses": "always",
36
+ "bracketSpacing": true,
37
+ "bracketSameLine": false,
38
+ "quoteStyle": "double",
39
+ "attributePosition": "auto"
40
+ }
41
+ }
42
+ }
package/package.json ADDED
@@ -0,0 +1,20 @@
1
+ {
2
+ "name": "@area44/biome-config",
3
+ "type": "module",
4
+ "version": "0.1.0",
5
+ "description": "AREA44's Biome configuration",
6
+ "author": "AREA44 (https://github.com/AREA44)",
7
+ "license": "MIT",
8
+ "homepage": "https://github.com/AREA44/biome-config",
9
+ "keywords": ["biome-config"],
10
+ "scripts": {
11
+ "format": "biome format --write ."
12
+ },
13
+ "exports": {
14
+ "./biome": "./biome.json"
15
+ },
16
+ "devDependencies": {
17
+ "@biomejs/biome": "^1.9.4"
18
+ },
19
+ "packageManager": "pnpm@10.5.2"
20
+ }