Includes scratch-gui, scratch-vm, scratch-blocks, scratch-render, scratch-l10n, and deployment config. Co-authored-by: Cursor <cursoragent@cursor.com>
12 lines
228 B
JavaScript
12 lines
228 B
JavaScript
module.exports = {
|
|
extends: ['scratch/react', 'scratch/es6', 'plugin:jest/recommended'],
|
|
env: {
|
|
browser: true,
|
|
jest: true
|
|
},
|
|
plugins: ['jest'],
|
|
rules: {
|
|
'react/prop-types': 0
|
|
}
|
|
};
|