mirror of
https://github.com/scratchfoundation/scratch-www.git
synced 2024-11-23 15:47:53 -05:00
15 lines
371 B
JavaScript
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
|
|
}
|
|
],
|
|
}
|
|
};
|