Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ This project:
This repository also provides a **baseline Prettier configuration** for Scality
object repositories: 4-space JavaScript/TypeScript indentation, 120-character
line length, single quotes, semicolons, trailing commas, and
`quoteProps: 'as-needed'`.
`quoteProps: 'consistent'`.

The configuration lives in `prettier.config.cjs`.

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "eslint-config-scality",
"version": "8.3.2",
"version": "8.3.3",
"description": "ESLint config for Scality's Node.js coding guidelines",
"bin": {
"mdlint": "./bin/mdlint.js",
Expand Down
2 changes: 1 addition & 1 deletion prettier.config.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module.exports = {
useTabs: false,
printWidth: 120,
singleQuote: true,
quoteProps: 'as-needed',
quoteProps: 'consistent',
semi: true,
trailingComma: 'all',
arrowParens: 'avoid',
Expand Down
Loading