scratch-www/test/.eslintrc.js

16 lines
370 B
JavaScript
Raw Normal View History

2019-07-17 15:27:13 -04:00
module.exports = {
extends: ['scratch/react', 'scratch/es6', 'plugin:jest/recommended'],
2019-07-17 15:27:13 -04:00
env: {
jest: true
},
rules: {
'jest/no-done-callback': 'off', // TODO: convert callback-based tests to async/await
'no-confusing-arrow': [
'error',
{
allowParens: true
}
]
2019-07-17 15:27:13 -04:00
}
};