scratch-www/test/.eslintrc.js
2023-10-24 14:03:18 -07:00

15 lines
371 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
}
],
}
};