// http://eslint.org/docs/user-guide/configuring module.exports = { root: true, parser: 'babel-eslint', parserOptions: { sourceType: 'module' }, env: { browser: true, }, "plugins": ["eslint-plugin-standard", "html"], // https://github.com/feross/standard/blob/master/RULES.md#javascript-standard-style extends: 'standard', // add your custom rules here 'rules': {}, 'globals': { 'chrome': true, 'SERVICE_ENV': true } }