πΊπ React Native TV app sample for Android TV, Fire TV, tvOS, and web. Features customizable drawer navigation ποΈ, content grid πΌοΈ, hero header π¦ΈββοΈ, and video player π₯. Built with Expo. Perfect starter for cross-platform TV app development! π
Is your feature request related to a problem? Please describe.
Add pre commit hooks. It help catch issues like linting errors, unformatted code, or failing tests before code is committed to the repository.
Linting: Ensure that code follows the defined linting rules.
Formatting: Automatically format code using tools like Prettier.
Unit Tests (when we will have) : Run unit tests to ensure no breaking changes are committed.
Type Checking (Optional): Add type checking if using TypeScript or similar tools.
Git Commit Message Formatting (Optional): Enforce a standardized format for commit messages, e.g., following Conventional Commits.
Describe the solution you'd like
on PR raise, pre commit hook should run and throw the errors on failing
Code cannot be committed if linting, formatting, or tests fail.
Is your feature request related to a problem? Please describe. Add pre commit hooks. It help catch issues like linting errors, unformatted code, or failing tests before code is committed to the repository.
Describe the solution you'd like
on PR raise, pre commit hook should run and throw the errors on failing
Code cannot be committed if linting, formatting, or tests fail.
Describe alternatives you've considered NA
Additional context NA