Add the same prettier config as zed.dev

Nate Butler created

Change summary

styles/package.json | 44 +++++++++++++++++++++++++-------------------
1 file changed, 25 insertions(+), 19 deletions(-)

Detailed changes

styles/package.json 🔗

@@ -1,21 +1,27 @@
 {
-  "name": "styles",
-  "version": "1.0.0",
-  "description": "",
-  "main": "index.js",
-  "scripts": {
-    "build": "ts-node ./src/buildThemes.ts",
-    "build-licenses": "ts-node ./src/buildLicenses.ts"
-  },
-  "author": "",
-  "license": "ISC",
-  "dependencies": {
-    "@types/chroma-js": "^2.1.3",
-    "@types/node": "^17.0.23",
-    "bezier-easing": "^2.1.0",
-    "case-anything": "^2.1.10",
-    "chroma-js": "^2.4.2",
-    "toml": "^3.0.0",
-    "ts-node": "^10.7.0"
-  }
+    "name": "styles",
+    "version": "1.0.0",
+    "description": "",
+    "main": "index.js",
+    "scripts": {
+        "build": "ts-node ./src/buildThemes.ts",
+        "build-licenses": "ts-node ./src/buildLicenses.ts"
+    },
+    "author": "",
+    "license": "ISC",
+    "dependencies": {
+        "@types/chroma-js": "^2.1.3",
+        "@types/node": "^17.0.23",
+        "bezier-easing": "^2.1.0",
+        "case-anything": "^2.1.10",
+        "chroma-js": "^2.4.2",
+        "toml": "^3.0.0",
+        "ts-node": "^10.7.0"
+    },
+    "prettier": {
+        "semi": false,
+        "printWidth": 80,
+        "htmlWhitespaceSensitivity": "strict",
+        "tabWidth": 4
+    }
 }