Skip to content
This repository has been archived by the owner on Sep 11, 2024. It is now read-only.

Commit

Permalink
change to import
Browse files Browse the repository at this point in the history
  • Loading branch information
fuxingloh committed Jan 3, 2024
1 parent ab66cdb commit b5950e2
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions packages/prettier/index.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
module.exports = {
/** @type {import('prettier').Config} */
const config = {
printWidth: 120,
trailingComma: 'all',
singleQuote: true,
plugins: [require('prettier-plugin-tailwindcss'), require('prettier-plugin-packagejson')],
plugins: [import('prettier-plugin-tailwindcss'), import('prettier-plugin-packagejson')],
};

module.exports = config;

0 comments on commit b5950e2

Please sign in to comment.