Skip to content

Commit

Permalink
style: Fix prettier lint
Browse files Browse the repository at this point in the history
  • Loading branch information
oliversalzburg committed Jan 25, 2024
1 parent e798152 commit 2befcfb
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 13 deletions.
4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,9 @@
"clean": "yarn run clean:all",
"clean:all": "rm -rf packages/*/build packages/*/tsconfig.tsbuildinfo",
"lint": "yarn run lint:all",
"lint:all": "eslint . --ext .ts && prettier --check packages",
"lint:all": "yarn run lint:eslint && yarn run lint:prettier",
"lint:eslint": "eslint . --ext .ts",
"lint:prettier": "prettier --check packages",
"test": "yarn run test:all",
"test:all": "yarn workspaces foreach --all --exclude kitten-scientists --parallel --verbose run test",
"test:coverage:all": "yarn workspaces foreach --all --exclude kitten-scientists --parallel --verbose run test:coverage",
Expand Down
4 changes: 2 additions & 2 deletions packages/action-automatic-releases/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"outDir": "build",
"rootDir": "source"
"rootDir": "source",
},
"include": ["../../@types", "source"],
"references": []
"references": [],
}
4 changes: 2 additions & 2 deletions packages/action-commit-validator/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"outDir": "build",
"rootDir": "source"
"rootDir": "source",
},
"include": ["../../@types", "source"],
"references": []
"references": [],
}
4 changes: 2 additions & 2 deletions packages/action-label-manager/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"outDir": "build",
"rootDir": "source"
"rootDir": "source",
},
"include": ["../../@types", "source"],
"references": []
"references": [],
}
4 changes: 2 additions & 2 deletions packages/action-release-info/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"outDir": "build",
"rootDir": "source"
"rootDir": "source",
},
"include": ["../../@types", "source"],
"references": []
"references": [],
}
4 changes: 2 additions & 2 deletions packages/kitten-scientists/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
"compilerOptions": {
"outDir": "build",
"rootDir": "source",
"types": ["@types/web"]
"types": ["@types/web"],
},
"include": ["../../@types", "source", "source/i18n/*.json"],
"references": [{ "path": "../action-release-info" }]
"references": [{ "path": "../action-release-info" }],
}
4 changes: 2 additions & 2 deletions packages/snapshot-analyzer/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
"experimentalDecorators": true,
"outDir": "build",
"rootDir": "source",
"useDefineForClassFields": false
"useDefineForClassFields": false,
},
"include": ["../../@types", "source"],
"references": []
"references": [],
}

0 comments on commit 2befcfb

Please sign in to comment.