Skip to content

Commit

Permalink
feat!: lint jsx (#140)
Browse files Browse the repository at this point in the history
Add `*.jsx` and `*.tsx` to list of files that are linted.

BREAKING CHANGE: previously jsx and tsx files were not linted, now they are
  • Loading branch information
achingbrain committed Apr 5, 2023
1 parent fc9aa6f commit fb5e5b6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
module.exports = {
overrides: [
{
files: ['*.js'],
files: ['*.js', '*.jsx'],
extends: './js.js'
},
{
files: ['*.ts'],
files: ['*.ts', '*.tsx'],
extends: './ts.js'
}
]
Expand Down

0 comments on commit fb5e5b6

Please sign in to comment.