qase-tms / qase-javascript

Qase TMS JavaScript SDK
https://developers.qase.io
49 stars 43 forks source link

[qase-core-reporter] Warning message about `@typescript-eslint/typescript-estree` #282

Closed 1ivliev closed 2 years ago

1ivliev commented 2 years ago

STR:

AR:

image

WARNING: You are currently running a version of TypeScript which is not officially supported by @typescript-eslint/typescript-estree.

You may find that it works just fine, or you may not.

SUPPORTED TYPESCRIPT VERSIONS: >=3.3.1 <4.1.0

YOUR TYPESCRIPT VERSION: 4.6.4

Please only submit bug reports when using the officially supported version.

ER:

let's discuss about this

dimitriharding commented 2 years ago

@1ivliev Resolved this issue with all of the sub reporters that were displaying this warning, they were mainly because of eslintrc.js being missed for the sub reporters and also needed to updated to the "root" to be true, so it wouldn't try to traverse outside of the reporter folder to find a a next eslintrc to use.


I am seeing the same issue with the qase-core-reporter, but it's mainly because of using one of the more updated versions of typescript which the msw requires for installation. And that module is used while unit testing.

Will have to see what is the best way to resolve this.

dimitriharding commented 2 years ago

@1ivliev All dependency issues should be resolved now.

1ivliev commented 2 years ago

Thank you, this problem no longer appears.