Skip to content

Commit

Permalink
Modified rules for prettier (#7)
Browse files Browse the repository at this point in the history
* Modified rules for prettier

* added changelog

---------

Co-authored-by: foxriver76 <[email protected]>
  • Loading branch information
GermanBluefox and foxriver76 authored Sep 11, 2024
1 parent 8f3ae94 commit 9f1b26e
Show file tree
Hide file tree
Showing 4 changed files with 79 additions and 63 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,9 @@ export default [...config, ...esmConfig];
Placeholder for the next version (at the beginning of the line):
### **WORK IN PROGRESS**
-->
### **WORK IN PROGRESS**
* (@GermanBluefox) adjust initial `prettier` rules

### 0.1.3 (2024-09-10)
* (@foxriver76) fixed problems with tsconfig

Expand Down
130 changes: 71 additions & 59 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,17 +19,17 @@
],
"peerDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.9.1",
"@eslint/js": "^9.10.0",
"@typescript-eslint/eslint-plugin": "^8.4.0",
"@typescript-eslint/parser": "^8.4.0",
"eslint": ">=9.9.1",
"eslint": ">=9.10.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jsdoc": "^50.2.2",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-unicorn": "^55.0.0",
"globals": "^15.9.0",
"prettier": "^3.3.3",
"typescript-eslint": "^8.4.0"
"typescript-eslint": "^8.5.0"
},
"devDependencies": {
"@alcalzone/release-script": "^3.8.0"
Expand Down
3 changes: 2 additions & 1 deletion prettier.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,9 @@ export default {
semi: true,
tabWidth: 4,
useTabs: false,
trailingComma: 'none',
trailingComma: 'all',
singleQuote: true,
singleAttributePerLine: true,
endOfLine: 'lf',
bracketSpacing: true,
arrowParens: 'avoid',
Expand Down

0 comments on commit 9f1b26e

Please sign in to comment.