scratch-render/src/.eslintrc.js
2016-12-12 12:06:19 -08:00

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?
}
};