-
Notifications
You must be signed in to change notification settings - Fork 33
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: import type lint rule and fixes #1039
Conversation
Signed-off-by: Todd Baert <[email protected]>
Signed-off-by: Todd Baert <[email protected]>
"error", | ||
{ | ||
"disallowTypeAnnotations": true, | ||
"fixStyle": "separate-type-imports", |
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.
There's an alternative to this which adds type
to each individual import... this adds type
to the entire import line. I don't care which we use.
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.
Nice, this is a great change.
Signed-off-by: Todd Baert <[email protected]>
🤖 I have created a release *beep* *boop* --- ## [1.5.0](core-v1.4.0...core-v1.5.0) (2024-10-29) ### ✨ New Features * implement tracking as per spec ([#1020](#1020)) ([80f182e](80f182e)) ### 🧹 Chore * import type lint rule and fixes ([#1039](#1039)) ([01fcb93](01fcb93)) --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please). --------- Signed-off-by: OpenFeature Bot <[email protected]> Signed-off-by: openfeature-peer-update-bot <[email protected]> Co-authored-by: openfeature-peer-update-bot <[email protected]>
🤖 I have created a release *beep* *boop* --- ## [1.3.0](web-sdk-v1.2.4...web-sdk-v1.3.0) (2024-10-29) ### ✨ New Features * implement tracking as per spec ([#1020](#1020)) ([80f182e](80f182e)) ### 🧹 Chore * import type lint rule and fixes ([#1039](#1039)) ([01fcb93](01fcb93)) * **main:** release core 1.5.0 ([#1040](#1040)) ([fe3ad8e](fe3ad8e)) ### 📚 Documentation * update domain context terminology ([#1037](#1037)) ([924802b](924802b)) --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please). Signed-off-by: OpenFeature Bot <[email protected]>
🤖 I have created a release *beep* *boop* --- ## [0.4.7](react-sdk-v0.4.6...react-sdk-v0.4.7) (2024-10-29) ### ✨ New Features * avoid re-resolving flags unaffected by a change event ([#1024](#1024)) ([b8f9b4e](b8f9b4e)) * implement tracking as per spec ([#1020](#1020)) ([80f182e](80f182e)) * use mutate context hook ([#1031](#1031)) ([ec3d967](ec3d967)) ### 🧹 Chore * add js docs for context mutator hook ([#1045](#1045)) ([def3fe8](def3fe8)) * import type lint rule and fixes ([#1039](#1039)) ([01fcb93](01fcb93)) --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please). Signed-off-by: OpenFeature Bot <[email protected]>
🤖 I have created a release *beep* *boop* --- ## [1.16.0](server-sdk-v1.15.1...server-sdk-v1.16.0) (2024-10-29) ### ✨ New Features * implement tracking as per spec ([#1020](#1020)) ([80f182e](80f182e)) ### 🧹 Chore * import type lint rule and fixes ([#1039](#1039)) ([01fcb93](01fcb93)) * **main:** release core 1.5.0 ([#1040](#1040)) ([fe3ad8e](fe3ad8e)) --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please). Signed-off-by: OpenFeature Bot <[email protected]> Signed-off-by: Todd Baert <[email protected]> Co-authored-by: Todd Baert <[email protected]>
🤖 I have created a release *beep* *boop* --- ## [0.2.2](nestjs-sdk-v0.2.1-experimental...nestjs-sdk-v0.2.2) (2024-10-29) ### 🧹 Chore * import type lint rule and fixes ([#1039](#1039)) ([01fcb93](01fcb93)) --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please). Signed-off-by: OpenFeature Bot <[email protected]>
Inspired by this comment I've added a lint rule to enforce
import type
, and some additional package changes to add alint:fix
.The only changes I made manually here is to add the lint rule, and the package.json script. All the changes are auto-generated by the
lint:fix
.