@storm-software/prettier
Advanced tools
+7
-0
@@ -0,1 +1,8 @@ | ||
| ## 0.12.0 (2024-07-29) | ||
| ### Features | ||
| - **prettier:** Added `prettier-plugin-solidity` configuration ([2f20befd](https://github.com/storm-software/storm-ops/commit/2f20befd)) | ||
| ## 0.11.1 (2024-07-23) | ||
@@ -2,0 +9,0 @@ |
+14
-8
@@ -16,3 +16,3 @@ { | ||
| { | ||
| "files": "*.md{,x}", | ||
| "files": "**/*.md{,x}", | ||
| "options": { | ||
@@ -24,3 +24,3 @@ "semi": false, | ||
| { | ||
| "files": "*.svg", | ||
| "files": "**/*.svg", | ||
| "options": { | ||
@@ -30,3 +30,3 @@ "parser": "html" | ||
| }, | ||
| { "files": "*.json", "options": { "trailingComma": "none" } }, | ||
| { "files": "**/*.json", "options": { "trailingComma": "none" } }, | ||
| { | ||
@@ -39,3 +39,3 @@ "files": "**/*.hbs", | ||
| { | ||
| "files": "**/*.aci", | ||
| "files": "**/*.prisma", | ||
| "options": { | ||
@@ -46,3 +46,3 @@ "parser": "prisma-parse" | ||
| { | ||
| "files": "**/*.acid", | ||
| "files": "**/{*.acid,*.aci,*.acidic}", | ||
| "options": { | ||
@@ -53,5 +53,10 @@ "parser": "prisma-parse" | ||
| { | ||
| "files": "**/*.acidic", | ||
| "files": "**/*.sol", | ||
| "options": { | ||
| "parser": "prisma-parse" | ||
| "parser": "solidity-parse", | ||
| "printWidth": 80, | ||
| "tabWidth": 4, | ||
| "useTabs": false, | ||
| "singleQuote": false, | ||
| "bracketSpacing": false | ||
| } | ||
@@ -64,5 +69,6 @@ } | ||
| "prettier-plugin-prisma", | ||
| "prettier-plugin-organize-imports" | ||
| "prettier-plugin-organize-imports", | ||
| "prettier-plugin-solidity" | ||
| ], | ||
| "organizeImportsSkipDestructiveCodeActions": false | ||
| } |
+21
-7
@@ -17,3 +17,3 @@ // packages/prettier/src/index.ts | ||
| { | ||
| "files": "*.md{,x}", | ||
| "files": "**/*.md{,x}", | ||
| "options": { | ||
@@ -25,3 +25,3 @@ "semi": false, | ||
| { | ||
| "files": "*.svg", | ||
| "files": "**/*.svg", | ||
| "options": { | ||
@@ -31,3 +31,3 @@ "parser": "html" | ||
| }, | ||
| { "files": "*.json", "options": { "trailingComma": "none" } }, | ||
| { "files": "**/*.json", "options": { "trailingComma": "none" } }, | ||
| { | ||
@@ -40,3 +40,3 @@ "files": "**/*.hbs", | ||
| { | ||
| "files": "**/*.acid", | ||
| "files": "**/*.prisma", | ||
| "options": { | ||
@@ -47,6 +47,17 @@ "parser": "prisma-parse" | ||
| { | ||
| "files": "**/*.acidic", | ||
| "files": "**/{*.acid,*.aci,*.acidic}", | ||
| "options": { | ||
| "parser": "prisma-parse" | ||
| } | ||
| }, | ||
| { | ||
| "files": "**/*.sol", | ||
| "options": { | ||
| "parser": "solidity-parse", | ||
| "printWidth": 80, | ||
| "tabWidth": 4, | ||
| "useTabs": false, | ||
| "singleQuote": false, | ||
| "bracketSpacing": false | ||
| } | ||
| } | ||
@@ -57,4 +68,7 @@ ], | ||
| "prettier-plugin-pkg", | ||
| "prettier-plugin-prisma" | ||
| ] | ||
| "prettier-plugin-prisma", | ||
| "prettier-plugin-organize-imports", | ||
| "prettier-plugin-solidity" | ||
| ], | ||
| "organizeImportsSkipDestructiveCodeActions": false | ||
| }; |
+1
-1
@@ -1,1 +0,1 @@ | ||
| {"inputs":{"packages/prettier/src/index.ts":{"bytes":1000,"imports":[],"format":"cjs"}},"outputs":{"dist/packages/prettier/index.cjs":{"imports":[],"exports":[],"entryPoint":"packages/prettier/src/index.ts","inputs":{"packages/prettier/src/index.ts":{"bytesInOutput":1000}},"bytes":1034}}} | ||
| {"inputs":{"packages/prettier/src/index.ts":{"bytes":1392,"imports":[],"format":"cjs"}},"outputs":{"dist/packages/prettier/index.cjs":{"imports":[],"exports":[],"entryPoint":"packages/prettier/src/index.ts","inputs":{"packages/prettier/src/index.ts":{"bytesInOutput":1392}},"bytes":1426}}} |
+3
-2
| { | ||
| "name": "@storm-software/prettier", | ||
| "version": "0.11.1", | ||
| "version": "0.12.0", | ||
| "type": "commonjs", | ||
@@ -55,3 +55,4 @@ "description": "⚡ A package containing the base Prettier configuration used by Storm Software across many projects.", | ||
| "prettier-plugin-prisma": "5.0.0", | ||
| "prettier-plugin-sh": "0.14.0" | ||
| "prettier-plugin-sh": "0.14.0", | ||
| "prettier-plugin-solidity": "1.3.1" | ||
| }, | ||
@@ -58,0 +59,0 @@ "devDependencies": { |
+1
-1
@@ -24,3 +24,3 @@ <!-- START header --> | ||
| [](https://prettier.io/) [](http://nx.dev/) [](https://nextjs.org/) [](http://commitizen.github.io/cz-cli/)  [](https://fumadocs.vercel.app/)  | ||
| [](https://prettier.io/) [](http://nx.dev/) [](https://nextjs.org/) [](http://commitizen.github.io/cz-cli/)  [](https://fumadocs.vercel.app/)  | ||
@@ -27,0 +27,0 @@ <!-- prettier-ignore-start --> |
31580
2.63%197
11.3%7
16.67%+ Added
+ Added
+ Added
+ Added