scratch-gui
Version:
GraphicaL User Interface for creating and running Scratch 3.0 projects
23 lines (22 loc) • 546 B
JavaScript
module.exports = {
root: true,
extends: ['scratch', 'scratch/es6', 'scratch/react', 'plugin:import/errors'],
env: {
browser: true
},
globals: {
process: true
},
rules: {
'import/no-mutable-exports': 'error',
'import/no-commonjs': 'error',
'import/no-amd': 'error',
'import/no-nodejs-modules': 'error',
'react/jsx-no-literals': 'error'
},
settings: {
react: {
version: '16.2' // Prevent 16.3 lifecycle method errors
}
}
};