core/.prettierrc.js
SKINMAKER a324106f9f
chore: use prettier (#636)
* chore: use prettier

* chore: add jsx single quote

* chore: remove indent rule

* chore: add prettier plugin for eslint
2023-11-26 00:31:48 +09:00

12 lines
303 B
JavaScript

module.exports = {
// Change your rules accordingly to your coding style preferences.
// https://prettier.io/docs/en/options.html
semi: false,
trailingComma: 'es5',
singleQuote: true,
jsxSingleQuote: true,
printWidth: 100,
tabWidth: 2,
useTabs: true,
plugins: ['prettier-plugin-tailwindcss']
}