Skip to content

Commit

Permalink
prettier include backend files
Browse files Browse the repository at this point in the history
  • Loading branch information
oxdev03 committed Mar 23, 2024
1 parent 065bb11 commit f9938b9
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
2 changes: 2 additions & 0 deletions apps/backend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@
"build": "tsc --build --clean && tsc",
"start": "node dist/index.js",
"lint": "eslint --fix .",
"format": "prettier --write \"**/*.{ts,json,css,scss,md}\"",
"format:check": "prettier --check \"**/*.{ts,json,css,scss,md}\"",
"prestart": "tsc --build --clean && tsc",
"watch": "tsc -w",
"dev": "npm run start"
Expand Down
2 changes: 1 addition & 1 deletion apps/backend/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"extends": "@pm2.web/typescript-config/base.json",
"exclude": ["node_modules","dist"],
"exclude": ["node_modules", "dist"],
"compilerOptions": {
"outDir": "./dist"
}
Expand Down
1 change: 1 addition & 0 deletions apps/dashboard/.eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
* @type {import('eslint').Linter.Config}
*/
module.exports = {
root: true,
extends: ["next/core-web-vitals", "prettier"],
ignorePatterns: ["node_modules", "dist"],
parserOptions: {
Expand Down

0 comments on commit f9938b9

Please sign in to comment.