mirror of
https://github.com/scratchfoundation/scratch-www.git
synced 2024-11-23 07:38:07 -05:00
16 lines
320 B
JavaScript
16 lines
320 B
JavaScript
module.exports = {
|
|
root: true,
|
|
extends: ['scratch', 'scratch/es6', 'scratch/react'],
|
|
env: {
|
|
browser: true
|
|
},
|
|
globals: {
|
|
process: true
|
|
},
|
|
plugins: ['json'],
|
|
settings: {
|
|
react: {
|
|
version: '16.2' // Prevent 16.3 lifecycle method errors
|
|
}
|
|
}
|
|
};
|