@irfanshadikrishad/prettier 1.2.2 → 1.2.4
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/README.md +7 -0
- package/index.js +1 -5
- package/package.json +6 -5
package/README.md
CHANGED
|
@@ -23,4 +23,11 @@ npm i @irfanshadikrishad/prettier --save-dev
|
|
|
23
23
|
"prettier": "@irfanshadikrishad/prettier",
|
|
24
24
|
```
|
|
25
25
|
|
|
26
|
+
#### Included plugins
|
|
27
|
+
|
|
28
|
+
- [prettier-plugin-organize-imports](https://www.npmjs.com/package/prettier-plugin-organize-imports)
|
|
29
|
+
- [prettier-plugin-packagejson](https://www.npmjs.com/package/prettier-plugin-packagejson)
|
|
30
|
+
- [prettier-plugin-tailwindcss](https://www.npmjs.com/package/prettier-plugin-tailwindcss)
|
|
31
|
+
- [prettier-plugin-nginx](https://www.npmjs.com/package/prettier-plugin-nginx)
|
|
32
|
+
|
|
26
33
|
#### Thanks for visiting. (̿▀̿ ̿Ĺ̯̿̿▀̿ ̿)̄
|
package/index.js
CHANGED
|
@@ -25,17 +25,13 @@ const config = {
|
|
|
25
25
|
vueIndentScriptAndStyle: true,
|
|
26
26
|
plugins: [
|
|
27
27
|
"prettier-plugin-organize-imports",
|
|
28
|
-
"prettier-plugin-jsdoc",
|
|
29
28
|
"prettier-plugin-packagejson",
|
|
29
|
+
"prettier-plugin-nginx",
|
|
30
30
|
"prettier-plugin-tailwindcss", // MUST come last (limitation)
|
|
31
31
|
],
|
|
32
32
|
organizeImportsSkipDestructiveCodeActions: false,
|
|
33
33
|
tailwindFunctions: ["clsx", "tw"],
|
|
34
34
|
tailwindPreserveDuplicates: false,
|
|
35
|
-
tsdoc: true,
|
|
36
|
-
jsdocCommentLineStrategy: "multiline",
|
|
37
|
-
jsdocSingleLineComment: false,
|
|
38
|
-
jsdocSeparateTagGroups: false,
|
|
39
35
|
packageSortOrder: [
|
|
40
36
|
"name",
|
|
41
37
|
"description",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@irfanshadikrishad/prettier",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.4",
|
|
4
4
|
"description": "Standard Prettier Configuration.",
|
|
5
5
|
"author": "Irfan Shadik Rishad",
|
|
6
6
|
"license": "ISC",
|
|
@@ -30,12 +30,13 @@
|
|
|
30
30
|
"keywords": [
|
|
31
31
|
"configuration",
|
|
32
32
|
"configs",
|
|
33
|
-
"prettier"
|
|
33
|
+
"prettier",
|
|
34
|
+
"code format"
|
|
34
35
|
],
|
|
35
36
|
"dependencies": {
|
|
36
|
-
"prettier-plugin-
|
|
37
|
-
"prettier-plugin-organize-imports": "^4.
|
|
37
|
+
"prettier-plugin-nginx": "^1.0.3",
|
|
38
|
+
"prettier-plugin-organize-imports": "^4.3.0",
|
|
38
39
|
"prettier-plugin-packagejson": "^2.5.19",
|
|
39
|
-
"prettier-plugin-tailwindcss": "^0.
|
|
40
|
+
"prettier-plugin-tailwindcss": "^0.7.1"
|
|
40
41
|
}
|
|
41
42
|
}
|