Currently eslint is configured to run on `*.ts`, but not yet `*.tsx`: 1. [x] enable `*.tsx` checking & fixing: https://github.com/graphistry/graphbi/blob/419e8d193a65d2b449f529b208ecf20fb245a0cc/pbiviz/package.json#L6 ```json "eslint": "eslint \"src/**/*.ts\"", "eslint:fix": "eslint --fix \"src/**/*.ts\"", ``` => ```json "eslint": "eslint \"src/**/*.ts\" && eslint\"src/**/*.tsx\"", "eslint:fix": "eslint --fix \"src/**/*.ts\" && eslint --fix \"src/**/*.tsx\"", ``` 2. [ ] actual lint fixes
Currently eslint is configured to run on
*.ts, but not yet*.tsx:*.tsxchecking & fixing:graphbi/pbiviz/package.json
Line 6 in 419e8d1
=>