Skip to content

Commit

Permalink
Ensure that TS files in shared/modules are linted (#18367)
Browse files Browse the repository at this point in the history
Some TypeScript files in shared/modules are not being linted. Add them
to the ESLint config and fix any lint violations that arise from doing
so.
  • Loading branch information
mcmire authored Mar 30, 2023
1 parent 9b0a6ec commit 50d8740
Show file tree
Hide file tree
Showing 3 changed files with 223 additions and 201 deletions.
2 changes: 2 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@ module.exports = {
files: [
'app/**/*.js',
'shared/**/*.js',
'shared/**/*.ts',
'ui/**/*.js',
'**/*.test.js',
'test/lib/**/*.js',
Expand Down Expand Up @@ -272,6 +273,7 @@ module.exports = {
'app/scripts/platforms/*.test.js',
'development/**/*.test.js',
'shared/**/*.test.js',
'shared/**/*.test.ts',
'test/helpers/*.js',
'test/jest/*.js',
'ui/**/*.test.js',
Expand Down
Loading

0 comments on commit 50d8740

Please sign in to comment.