Copilot commented on code in PR #36859:
URL: https://github.com/apache/superset/pull/36859#discussion_r2658777339
##########
superset-frontend/oxlint.json:
##########
@@ -1,5 +1,5 @@
{
- "$schema": "https://oxc-project.github.io/oxlint/schema.json",
+ "$schema": "./node_modules/oxlint/configuration_schema.json",
Review Comment:
The schema path uses `./node_modules/` while the existing `lerna.json` file
in the same directory uses `node_modules/` (without the leading `./`). For
consistency with the existing configuration pattern in this repository,
consider removing the `./` prefix to match the style used in lerna.json.
```suggestion
"$schema": "node_modules/oxlint/configuration_schema.json",
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]