12 lines
242 B
JavaScript
12 lines
242 B
JavaScript
module.exports = {
|
|
root: true,
|
|
extends: ['scratch', 'scratch/es6', 'scratch/node'],
|
|
env: {
|
|
node: false,
|
|
browser: true // TODO: disable this
|
|
},
|
|
globals: {
|
|
Buffer: true // TODO: remove this?
|
|
}
|
|
};
|