diff --git a/front/.eslintrc.json b/front/.eslintrc.json index d7e16591..06bacac5 100644 --- a/front/.eslintrc.json +++ b/front/.eslintrc.json @@ -11,6 +11,7 @@ "error", { "max": 75, "skipBlankLines": true, "skipComments": true } ], - "complexity": ["error", 6] + "complexity": ["error", 6], + "prettier/prettier": ["error", {"tabWidth": 4}] } } diff --git a/front/.prettierrc b/front/.prettierrc deleted file mode 100644 index 7cedcd5a..00000000 --- a/front/.prettierrc +++ /dev/null @@ -1 +0,0 @@ -{ "tabWidth": 4 } diff --git a/front/src/app/LogsTable.tsx b/front/src/app/LogsTable.tsx index 4a3354ed..6d2715ad 100644 --- a/front/src/app/LogsTable.tsx +++ b/front/src/app/LogsTable.tsx @@ -11,8 +11,7 @@ export default function LogsTable({ logs }: Props) { return ( - } - /> + } /> diff --git a/front/src/atomic/atoms/SearchIcon.tsx b/front/src/atomic/atoms/SearchIcon.tsx index 53f3f56f..73379c2b 100644 --- a/front/src/atomic/atoms/SearchIcon.tsx +++ b/front/src/atomic/atoms/SearchIcon.tsx @@ -8,8 +8,7 @@ export const SearchIcon = () => { width="512px" height="512px" > - + ); };