easy-scratch/test/.eslintrc.js

12 lines
228 B
JavaScript
Raw Normal View History

2025-02-12 12:27:32 +00:00
module.exports = {
extends: ['scratch/react', 'scratch/es6', 'plugin:jest/recommended'],
env: {
browser: true,
jest: true
},
plugins: ['jest'],
rules: {
'react/prop-types': 0
}
};