chore: enable proseWrap only for Markdown

chore: delete default Prettier rules
This commit is contained in:
Paul Razvan Berg
2025-03-25 14:31:42 +02:00
parent 3bcb47c97f
commit f92e2e2117
2 changed files with 4 additions and 3 deletions

View File

@@ -19,8 +19,7 @@ jobs:
- name: "Update package.json"
env:
GITHUB_REPOSITORY_DESCRIPTION: ${{ github.event.repository.description }}
run:
./.github/scripts/rename.sh "$GITHUB_REPOSITORY" "$GITHUB_REPOSITORY_OWNER" "$GITHUB_REPOSITORY_DESCRIPTION"
run: ./.github/scripts/rename.sh "$GITHUB_REPOSITORY" "$GITHUB_REPOSITORY_OWNER" "$GITHUB_REPOSITORY_DESCRIPTION"
- name: "Add rename summary"
run: |

View File

@@ -2,10 +2,12 @@ plugins:
- "@trivago/prettier-plugin-sort-imports"
- "prettier-plugin-solidity"
printWidth: 120
proseWrap: "always"
trailingComma: "all"
overrides:
- files: "*.md"
options:
proseWrap: "always"
- files: "*.sol"
options:
compiler: "0.8.17"