feat!: module & commonjs in prettier

BREAKING CHANGE: support module, and commonjs types
This commit is contained in:
Ismo Vuorinen
2024-08-21 17:50:05 +03:00
parent 02e4f4779c
commit 12ea3688ad
3 changed files with 9 additions and 2 deletions

View File

@@ -0,0 +1,17 @@
'use strict'
module.exports = {
arrowParens: 'avoid',
proseWrap: 'never',
semi: false,
singleQuote: true,
trailingComma: 'none',
overrides: [
{
files: ['*.css', '*.scss'],
options: {
singleQuote: false
}
}
]
}