Skip to content

Commit

Permalink
no-undef should be off because the ts compiler handles it for us
Browse files Browse the repository at this point in the history
  • Loading branch information
bdemann committed Apr 10, 2024
1 parent 801dd16 commit 008c70c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ module.exports = {
],
'@typescript-eslint/ban-ts-comment': 'off',
'prefer-const': 'off', // For azle let is used to indicate mutability not only re-assignability
'no-undef': 'error', // TS compiler handles this for us
'no-undef': 'off', // TS compiler handles this for us
'@typescript-eslint/no-explicit-any': 'off' // TODO https://github.com/demergent-labs/azle/issues/1737
}
};

0 comments on commit 008c70c

Please sign in to comment.