diff --git a/.prettierrc b/.prettierrc new file mode 100644 index 000000000..2352ff2ca --- /dev/null +++ b/.prettierrc @@ -0,0 +1,8 @@ +{ + "singleQuote": false, + "arrowParens": "always", + "trailingComma": "none", + "printWidth": 100, + "tabWidth": 2, + "plugins": ["prettier-plugin-tailwindcss"] +} diff --git a/prettier.config.js b/prettier.config.js deleted file mode 100644 index 08c633104..000000000 --- a/prettier.config.js +++ /dev/null @@ -1,9 +0,0 @@ -/** @type {import('prettier').Config} */ -module.exports = { - singleQuote: false, - arrowParens: 'always', - trailingComma: 'none', - printWidth: 100, - tabWidth: 2, - plugins: ['prettier-plugin-tailwindcss'] -};