Skip to content

wildweb-io/prettier-config

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

@wildweb/prettier-config

Installation

npm i -D @wildweb/prettier-config prettier

Setup

  1. Add the prettier key to your package.json
diff --git a/package.json b/package.json
index 2ecef3d..260838f 100644
--- a/package.json
+++ b/package.json
@@ -5,6 +5,7 @@
   "keywords": [
     "prettier"
   ],
+  "prettier": "@wildweb/prettier-config",
   "license": "MIT",
   "author": "WildWeb.io",
   "main": "index.js"
  1. Add the following to scripts in package.json
"prettier": "prettier '**/*.{js,ts,json,css,scss,html,hbs,md}' --write"
  1. Install the relevant Editor Addon/Plugin and enable "Prettier on Save".

Check out the prettier documentation for more info on sharing configurations.

With Tailwindcss

Create the following file .prettierrc.js

module.exports = {
	...require('@wildweb/prettier-config'),
	plugins: [require.resolve('prettier-plugin-tailwindcss')],
};

Check out the prettier documentation for more info on sharing configurations.