mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-07-25 19:48:11 +00:00
[js] fix linter out-of-memory issue (#18307)
### Description fix linter out-of-memory issue by ignoring file pattern 'test/data/'.
This commit is contained in:
parent
d117a8010f
commit
10df847baf
1 changed files with 1 additions and 1 deletions
|
|
@ -5,7 +5,7 @@
|
|||
|
||||
module.exports = {
|
||||
root: true,
|
||||
ignorePatterns: ['**/*.js', 'ort-schema/', 'common/test/type-tests/', 'node_modules/', 'types/', 'dist/'],
|
||||
ignorePatterns: ['**/*.js', 'ort-schema/', 'common/test/type-tests/', 'test/data/', 'node_modules/', 'dist/'],
|
||||
env: { 'es6': true },
|
||||
parser: '@typescript-eslint/parser',
|
||||
parserOptions: { 'project': 'tsconfig.json', 'sourceType': 'module' },
|
||||
|
|
|
|||
Loading…
Reference in a new issue