Version Packages - #11
Merged
Merged
Conversation
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and publish to npm yourself or setup this action to publish automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.
Releases
@lyracom/eslint-config-expo@1.0.0
Major Changes
80c1ee3: Add
@lyracom/eslint-config-expo, Lyra's ESLint config for Expo React Native apps.Flat config (ESLint 9+) built on top of
eslint-config-expo(React, React Hooks,import resolution and TypeScript baseline tuned for Expo / React Native), with
eslint-config-prettierapplied last so Prettier stays the single source oftruth for formatting.
The package exports two named flat-config arrays:
lyraExpoConfig(the mainconfig) and
reactCompilerRecommendedWarn(optional, see below).On top of the Expo baseline it adds a lean house-rules layer (all
warnduringmigration unless noted otherwise):
@typescript-eslintrecommended preset, layered before Expo (so Expo'sRN-specific tuning still wins) and downgraded to
warn.@typescript-eslint/no-deprecated(requiringtypescript+ atsconfig), replacing the archived
eslint-plugin-deprecation.@typescript-eslint/no-floating-promisesand@typescript-eslint/no-misused-promisesare explicitly disabled: runtime monitoring handles unhandled failures, and
intentional fire-and-forget calls use
voidwhere appropriate.@typescript-eslint/no-empty-function(allowing empty arrow functions, sincethey're an idiomatic no-op default in React Contexts).
prefer-promise-reject-errorsandreact/display-nameleft off (noisy in RN).react/self-closing-compenabled as an error for consistent JSX (<View />instead of
<View></View>).eslint-plugin-importrules disabled where redundant withTypeScript and expensive to run:
import/namespace,import/no-named-as-default-member,import/no-unresolved.no-unassigned-vars,no-useless-assignment,preserve-caught-error.migrating gradually can use the opt-in
reactCompilerRecommendedWarnnamed preset to downgrade them all to warningswith one config spread.
@lyracom/prettier-config@7.0.0
Major Changes
@trivago/prettier-plugin-sort-importsv6 as a peer dependency.