scratch-www/test/.eslintrc.js
2024-02-26 10:10:19 -08:00

15 lines
370 B
JavaScript

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