-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chore(deps): update typescript-eslint monorepo to v8 (major) #304
Merged
abdullah-cognite
merged 13 commits into
master
from
renovate/major-typescript-eslint-monorepo
Nov 27, 2024
Merged
Changes from 4 commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
9a3fcd5
chore(deps): update typescript-eslint monorepo to v8
renovate[bot] 13aab0a
Merge branch 'master' into renovate/major-typescript-eslint-monorepo
abdullah-cognite aebbef5
chore(deps): update typescript-eslint monorepo to v8
renovate[bot] 06dc013
Merge branch 'renovate/major-typescript-eslint-monorepo' of github.co…
abdullah-cognite cee0146
upgrade eslint
abdullah-cognite 8b816f7
upgrade eslint to 9 with new configs
abdullah-cognite ef3d462
Merge branch 'master' into renovate/major-typescript-eslint-monorepo
abdullah-cognite d68adf4
updat lock file
abdullah-cognite 2a24481
update webpack to use flat config files
abdullah-cognite 32e78fd
update eslintrc file
abdullah-cognite 82cd11b
formatting update
abdullah-cognite c45bd44
remove 4 packages
abdullah-cognite e3f85a2
reduce warnings
abdullah-cognite File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,12 +2,31 @@ | |
* ⚠️⚠️⚠️ THIS FILE WAS SCAFFOLDED BY `@grafana/create-plugin`. DO NOT EDIT THIS FILE DIRECTLY. ⚠️⚠️⚠️ | ||
* | ||
* In order to extend the configuration follow the steps in | ||
* https://grafana.github.io/plugin-tools/docs/advanced-configuration#extending-the-eslint-config | ||
* https://grafana.com/developers/plugin-tools/get-started/set-up-development-environment#extend-the-eslint-config | ||
*/ | ||
{ | ||
"extends": ["@grafana/eslint-config"], | ||
"extends": ["@grafana/eslint-config", "plugin:deprecation/recommended"], | ||
"root": true, | ||
"rules": { | ||
"react/prop-types": "off" | ||
} | ||
} | ||
}, | ||
"overrides": [ | ||
{ | ||
"files": ["src/**/*.{ts,tsx}"], | ||
"rules": { | ||
"deprecation/deprecation": "warn", | ||
"@typescript-eslint/no-inferrable-types": "warn", | ||
"@typescript-eslint/array-type": ["warn", { "default": "array-simple" }] | ||
}, | ||
"parserOptions": { | ||
"project": "./tsconfig.json" | ||
} | ||
}, | ||
{ | ||
"files": ["./tests/**/*"], | ||
"rules": { | ||
"react-hooks/rules-of-hooks": "off" | ||
} | ||
} | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. was this generated? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed broken link