Skip to content

Commit 1ca335d

Browse files
author
Your Name
committed
fix: add backend prettier config without tailwindcss plugin
- Create separate .prettierrc for backend to avoid inheriting frontend's prettier-plugin-tailwindcss - This fixes the CI linting error where the plugin was not found
1 parent 7108638 commit 1ca335d

1 file changed

Lines changed: 13 additions & 0 deletions

File tree

backend/.prettierrc

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"semi": true,
3+
"trailingComma": "es5",
4+
"singleQuote": true,
5+
"printWidth": 100,
6+
"tabWidth": 2,
7+
"useTabs": false,
8+
"quoteProps": "as-needed",
9+
"bracketSpacing": true,
10+
"bracketSameLine": false,
11+
"arrowParens": "always",
12+
"endOfLine": "lf"
13+
}

0 commit comments

Comments
 (0)