We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b3add66 commit 726aa89Copy full SHA for 726aa89
api/.eslintrc.js
@@ -20,5 +20,11 @@ module.exports = {
20
'@typescript-eslint/explicit-function-return-type': 'off',
21
'@typescript-eslint/explicit-module-boundary-types': 'off',
22
'@typescript-eslint/no-explicit-any': 'off',
23
+ "prettier/prettier": [
24
+ "error",
25
+ {
26
+ "endOfLine": "auto"
27
+ },
28
+ ],
29
},
30
};
api/.prettierrc
@@ -1,4 +1,5 @@
1
{
2
- "singleQuote": true,
3
- "trailingComma": "all"
+ "singleQuote": true,
+ "trailingComma": "all",
4
+ "endOfLine":"auto"
5
}
0 commit comments