Fix .oxlintrc.json Schema Path That Only Resolves After npm install
Description
rontend/.oxlintrc.json:2 has $schema pointing to ./node_modules/oxlint/.... Before
pm install, this path doesn't exist, causing IDE warnings. The schema should reference a stable URL or use a fallback.
Requirements & Context
Replace relative path with oxlint schema URL. Or remove if not needed. Configure oxlint in project settings.
Suggested Execution
Branch: ix/frontend-oxlint-schema-path
Implement Changes
(1) Replace relative schema path with URL (2) Or remove schema reference (3) Verify oxlint still works (4) Document alternative configuration
Test & Commit
Open .oxlintrc.json before npm install, verify no schema resolution warning.
Example Commit Message
ix(frontend): replace node_modules-relative oxlint schema path with stable URL
Guidelines
- Use published oxlint schema URL
- Verify linter still works after change
Fix .oxlintrc.json Schema Path That Only Resolves After npm install
Description
rontend/.oxlintrc.json:2 has $schema pointing to ./node_modules/oxlint/.... Before
pm install, this path doesn't exist, causing IDE warnings. The schema should reference a stable URL or use a fallback.
Requirements & Context
Replace relative path with oxlint schema URL. Or remove if not needed. Configure oxlint in project settings.
Suggested Execution
Branch: ix/frontend-oxlint-schema-path
Implement Changes
(1) Replace relative schema path with URL (2) Or remove schema reference (3) Verify oxlint still works (4) Document alternative configuration
Test & Commit
Open .oxlintrc.json before npm install, verify no schema resolution warning.
Example Commit Message
ix(frontend): replace node_modules-relative oxlint schema path with stable URL
Guidelines