diff --git a/app/.eslintrc.json b/app/.eslintrc.json index aee83a4..83d607f 100644 --- a/app/.eslintrc.json +++ b/app/.eslintrc.json @@ -6,7 +6,8 @@ "node": true }, "extends": [ - "airbnb-base" + "airbnb-base", + "prettier" ], "parser": "@typescript-eslint/parser", "parserOptions": { @@ -14,8 +15,10 @@ "sourceType": "module" }, "plugins": [ - "@typescript-eslint" + "@typescript-eslint", + "prettier" ], "rules": { + "prettier/prettier": ["error"] } } diff --git a/app/.prettierrc b/app/.prettierrc new file mode 100644 index 0000000..ea9ebdb --- /dev/null +++ b/app/.prettierrc @@ -0,0 +1,4 @@ +{ + "printWidth": 100, + "singleQuote": true +} \ No newline at end of file