Skip to content

Commit

Permalink
fix: add extends @code-pushup
Browse files Browse the repository at this point in the history
  • Loading branch information
ChristopherPHolder committed Mar 5, 2024
1 parent e5bdc8e commit 5c41032
Show file tree
Hide file tree
Showing 11 changed files with 114 additions and 52 deletions.
4 changes: 2 additions & 2 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@
"root": true,
"ignorePatterns": ["**/*"],
"plugins": ["@nx"],
"extends": ["@code-pushup"],
"settings": {
"import/resolver": {
"typescript": {
"alwaysTryTypes": true,
"project": "tsconfig.base.json"
}
}
},
"extends": ["@code-pushup"]
}
}
108 changes: 77 additions & 31 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"prepare": "husky install"
},
"dependencies": {
"@code-pushup/portal-client": "^0.4.1",
"@code-pushup/portal-client": "^0.6.1",
"@puppeteer/replay": "^1.3.1",
"@types/concurrently": "^7.0.0",
"@types/puppeteer": "^5.4.7",
Expand All @@ -40,9 +40,9 @@
"zod": "^3.22.4"
},
"devDependencies": {
"@code-pushup/cli": "^0.22.0",
"@code-pushup/eslint-config": "^0.4.0",
"@code-pushup/eslint-plugin": "^0.22.1",
"@code-pushup/cli": "^0.25.6",
"@code-pushup/eslint-config": "^0.5.0",
"@code-pushup/eslint-plugin": "^0.25.6",
"@commitlint/cli": "^17.2.0",
"@commitlint/config-angular": "^17.2.0",
"@jscutlery/semver": "^4.0.0",
Expand Down
11 changes: 3 additions & 8 deletions packages/cli/.eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,7 @@
{
"extends": ["../../.eslintrc.json"],
"ignorePatterns": ["!**/*"],
"overrides": [
{
"files": ["*.ts", "*.tsx"],
"parserOptions": {
"project": ["packages/cli/tsconfig.*?.json"]
}
}
]
"parserOptions": {
"project": ["packages/cli/tsconfig.*?.json"]
}
}
5 changes: 4 additions & 1 deletion packages/nx-plugin-integration/.eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
{
"extends": ["../../.eslintrc.json"],
"ignorePatterns": ["!**/*"]
"ignorePatterns": ["!**/*"],
"parserOptions": {
"project": ["packages/cli/tsconfig.*?.json"]
}
}
5 changes: 4 additions & 1 deletion packages/nx-plugin/.eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
{
"extends": ["../../.eslintrc.json"],
"ignorePatterns": ["!**/*"]
"ignorePatterns": ["!**/*"],
"parserOptions": {
"project": ["packages/cli/tsconfig.*?.json"]
}
}
5 changes: 4 additions & 1 deletion packages/sandbox/.eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
{
"extends": ["../../.eslintrc.json"],
"ignorePatterns": ["!**/*"]
"ignorePatterns": ["!**/*"],
"parserOptions": {
"project": ["packages/cli/tsconfig.*?.json"]
}
}
5 changes: 4 additions & 1 deletion packages/test-data/.eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
{
"extends": ["../../.eslintrc.json"],
"ignorePatterns": ["!**/*"]
"ignorePatterns": ["!**/*"],
"parserOptions": {
"project": ["packages/cli/tsconfig.*?.json"]
}
}
5 changes: 4 additions & 1 deletion packages/user-flow-cli-testing/.eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
{
"extends": ["../../.eslintrc.json"],
"ignorePatterns": ["!**/*"]
"ignorePatterns": ["!**/*"],
"parserOptions": {
"project": ["packages/cli/tsconfig.*?.json"]
}
}
5 changes: 4 additions & 1 deletion packages/user-flow-example/.eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
{
"extends": ["../../.eslintrc.json"],
"ignorePatterns": ["!**/*"]
"ignorePatterns": ["!**/*"],
"parserOptions": {
"project": ["packages/cli/tsconfig.*?.json"]
}
}
5 changes: 4 additions & 1 deletion packages/user-flow-gh-integration/.eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
{
"extends": ["../../.eslintrc.json"],
"ignorePatterns": ["!**/*"]
"ignorePatterns": ["!**/*"],
"parserOptions": {
"project": ["packages/cli/tsconfig.*?.json"]
}
}

0 comments on commit 5c41032

Please sign in to comment.