@vlandoss/biome-config 0.0.1

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.
package/CHANGELOG.md ADDED
@@ -0,0 +1,7 @@
1
+ # @vlandoss/biome-config
2
+
3
+ ## 0.0.1
4
+
5
+ ### Patch Changes
6
+
7
+ - [#85](https://github.com/variableland/dx/pull/85) [`bdae9bf`](https://github.com/variableland/dx/commit/bdae9bf09a9a967ced98dd42b373c725c2c4f2b3) Thanks [@rqbazan](https://github.com/rqbazan)! - Move to @vlandoss organization
package/README.md ADDED
@@ -0,0 +1,19 @@
1
+ # Biome Config
2
+
3
+ ## Installation
4
+
5
+ ```bash
6
+ pnpm add -D @vlandoss/biome-config
7
+ ```
8
+
9
+ ## Usage
10
+
11
+ 1. Create a `biome.json` file at the root of your project.
12
+
13
+ 2. Paste the following:
14
+
15
+ ```json
16
+ {
17
+ "extends": ["@vlandoss/biome-config"]
18
+ }
19
+ ```
package/package.json ADDED
@@ -0,0 +1,25 @@
1
+ {
2
+ "name": "@vlandoss/biome-config",
3
+ "version": "0.0.1",
4
+ "description": "Biome configuration file for @variableland",
5
+ "homepage": "https://github.com/variableland/dx/tree/main/dotfiles/biome-config#readme",
6
+ "bugs": {
7
+ "url": "https://github.com/variableland/dx/issues"
8
+ },
9
+ "repository": {
10
+ "type": "git",
11
+ "url": "git+https://github.com/variableland/dx.git"
12
+ },
13
+ "author": "rcrd <rcrd@variable.land>",
14
+ "keywords": [
15
+ "biome"
16
+ ],
17
+ "license": "MIT",
18
+ "type": "module",
19
+ "exports": {
20
+ ".": "./src/biome.json"
21
+ },
22
+ "publishConfig": {
23
+ "access": "public"
24
+ }
25
+ }
package/src/biome.json ADDED
@@ -0,0 +1,29 @@
1
+ {
2
+ "$schema": "https://biomejs.dev/schemas/1.9.4/schema.json",
3
+ "vcs": {
4
+ "enabled": true,
5
+ "clientKind": "git",
6
+ "useIgnoreFile": true,
7
+ "defaultBranch": "main"
8
+ },
9
+ "organizeImports": {
10
+ "enabled": true
11
+ },
12
+ "linter": {
13
+ "enabled": true,
14
+ "rules": {
15
+ "recommended": true
16
+ }
17
+ },
18
+ "formatter": {
19
+ "enabled": true,
20
+ "indentStyle": "space",
21
+ "lineWidth": 130
22
+ },
23
+ "javascript": {
24
+ "formatter": {
25
+ "quoteStyle": "double",
26
+ "semicolons": "always"
27
+ }
28
+ }
29
+ }