Skip to content

Commit

Permalink
Merge pull request #54236 from callstack-internal/VickyStash/feature/…
Browse files Browse the repository at this point in the history
…50360-disable-rule-for-large-files

[No QA] Follow-up: Disable default id eslint rule for the large files
  • Loading branch information
lakchote authored Dec 17, 2024
2 parents c668f0d + 400de2f commit 26b0bd6
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .eslintrc.changed.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,12 @@ module.exports = {
'deprecation/deprecation': 'error',
'rulesdir/no-default-id-values': 'error',
},
overrides: [
{
files: ['src/libs/ReportUtils.ts', 'src/libs/actions/IOU.ts', 'src/libs/actions/Report.ts', 'src/libs/actions/Task.ts'],
rules: {
'rulesdir/no-default-id-values': 'off',
},
},
],
};

0 comments on commit 26b0bd6

Please sign in to comment.