A number of new rules require parserServices to be generated which results in the error:
You must therefore provide a value for the "parserOptions.project" property for @typescript-eslint/parser
Currently it isn't specified:
|
parserOptions: { |
|
ecmaVersion: 11, |
|
sourceType: 'module', |
|
}, |
Specifying this, however, isn't as easy as other repos given this monorepo structure and, I believe, how the packages' tsconfig.json files use references, potentially confusing ESLint on how to find the files.
Disabling these few rules allows it to run, but with quite a number of errors:
✖ 2921 problems (2921 errors, 0 warnings)
399 errors and 0 warnings potentially fixable with the `--fix` option.
A number of new rules require
parserServicesto be generated which results in the error:Currently it isn't specified:
airnode/.eslintrc.js
Lines 9 to 12 in c43d981
Specifying this, however, isn't as easy as other repos given this monorepo structure and, I believe, how the packages'
tsconfig.jsonfiles usereferences, potentially confusing ESLint on how to find the files.Disabling these few rules allows it to run, but with quite a number of errors:
✖ 2921 problems (2921 errors, 0 warnings) 399 errors and 0 warnings potentially fixable with the `--fix` option.