- Linting: Avoid warnings for instrumented files (currently test files depend on instrumentation step, so we don't want CI checking the paths if not created there)
parent
b3abca4917
commit
e0d68671ea
|
@ -292,8 +292,8 @@ module.exports = {
|
||||||
// These errors are caused in Cypress files if user has not
|
// These errors are caused in Cypress files if user has not
|
||||||
// yet instrumented code; need to reinvestigate why we had to
|
// yet instrumented code; need to reinvestigate why we had to
|
||||||
// instrument separately from nyc mocha
|
// instrument separately from nyc mocha
|
||||||
'import/no-unresolved': 'warn',
|
'import/no-unresolved': ['error', {ignore: ['/instrumented/']}],
|
||||||
'node/no-missing-import': 'warn',
|
'node/no-missing-import': 'off',
|
||||||
|
|
||||||
'chai-expect-keywords/no-unsupported-keywords': [
|
'chai-expect-keywords/no-unsupported-keywords': [
|
||||||
'error', {
|
'error', {
|
||||||
|
|
Loading…
Reference in New Issue