lbry-desktop/.eslintrc.json
2017-12-13 18:50:17 -03:00

29 lines
No EOL
442 B
JSON

{
"plugins": [
"flowtype"
],
"extends": [
"airbnb",
"plugin:flowtype/recommended",
"prettier"
],
"settings": {
"import/resolver": {
"webpack": {
"config": "webpack.renderer.additions.js"
}
},
"import/core-modules": [
"electron"
]
},
"parser": "babel-eslint",
"env": {
"browser": true,
"node": true
},
"globals": {
"__static": true,
"__": true
}
}