Skip to content

Instantly share code, notes, and snippets.

@sigorilla
Created July 27, 2017 16:45
Show Gist options
  • Save sigorilla/7e0f6d90e2c546a791785a8047e00709 to your computer and use it in GitHub Desktop.
Save sigorilla/7e0f6d90e2c546a791785a8047e00709 to your computer and use it in GitHub Desktop.
module.exports = {
extends: [
'plugin:yandex-maps/recommended',
'plugin:yandex-maps/react',
'plugin:yandex-maps/mocha'
],
root: true,
env: {
node: true,
es6: true
},
parserOptions: {
sourceType: 'module'
},
settings: {
react: {
version: '15.3.0'
}
},
overrides: [
{
files: 'src/**',
globals: {
window: true,
borschik: true
}
},
{
files: ['test/**', 'src/**/*.test.js'],
env: {
mocha: true
},
globals: {
modules: true,
chai: true,
sinon: true
},
rules: {
'no-unused-expressions': 'off'
}
}
]
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment