lbry-desktop/.eslintrc.json

34 lines
575 B
JSON
Raw Normal View History

2017-12-13 22:35:07 +01:00
{
"plugins": [
"flowtype"
],
"extends": [
"airbnb",
"plugin:import/electron",
2017-12-13 22:35:07 +01:00
"plugin:flowtype/recommended",
"plugin:prettier/recommended"
2017-12-13 22:35:07 +01:00
],
"settings": {
"import/resolver": {
"webpack": {
"config": "webpack.renderer.additions.js"
}
}
2017-12-13 22:35:07 +01:00
},
"parser": "babel-eslint",
"env": {
"browser": true,
"node": true
},
"globals": {
"__static": true,
"staticResourcesPath": true,
"__": true,
"__n": true,
"app": true
2017-12-20 16:35:13 +01:00
},
"rules": {
"import/no-commonjs": 1,
"import/no-amd": 1
2017-12-13 22:35:07 +01:00
}
}