fix: eslint configuration for all directories and JSX parsing#1449
Open
AbhishekChorotiya wants to merge 1 commit intomainfrom
Open
fix: eslint configuration for all directories and JSX parsing#1449AbhishekChorotiya wants to merge 1 commit intomainfrom
AbhishekChorotiya wants to merge 1 commit intomainfrom
Conversation
2657e31 to
e3df997
Compare
aritro2002
approved these changes
Mar 26, 2026
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.
Note
This PR was created programmatically via GitHub CLI and is linked to issue #1448.
Type of Change
Description
Fixed ESLint configuration to properly apply to all directories in the project and enabled JSX parsing for JavaScript files.
Changes Made:
Broadened File Pattern: Changed
files: ["src/**/*.{js,jsx,ts,tsx}"]tofiles: ["**/*.{js,jsx,ts,tsx}"]to match all JS/TS files in any directory within the project.Enabled JSX Parsing: Added
ecmaFeatures: { jsx: true }to parser options so ESLint's default Espree parser can understand JSX syntax.Root Cause:
src/directoryHyperswitch-React-Demo-App/src/) had no ESLint configuration appliedFixes #1448
How did you test it?
Ran ESLint on the project and verified it correctly parses JSX files in all directories without errors.
Checklist
npm run re:build