52f2d6140d
Those errors are temporaly being removed so they dont spam Codacy. They shall be added again with https://github.com/lbryio/lbry-app/issues/967.
33 lines
600 B
JSON
33 lines
600 B
JSON
{
|
|
"plugins": ["flowtype"],
|
|
"extends": [
|
|
"airbnb",
|
|
"plugin:import/electron",
|
|
"plugin:flowtype/recommended",
|
|
"prettier"
|
|
],
|
|
"settings": {
|
|
"import/resolver": {
|
|
"webpack": {
|
|
"config": "webpack.renderer.additions.js"
|
|
}
|
|
}
|
|
},
|
|
"parser": "babel-eslint",
|
|
"env": {
|
|
"browser": true,
|
|
"node": true
|
|
},
|
|
"globals": {
|
|
"__static": true,
|
|
"staticResourcesPath": true,
|
|
"__": true,
|
|
"__n": true,
|
|
"app": true
|
|
},
|
|
"rules": {
|
|
"import/no-commonjs": "warn",
|
|
"import/no-amd": "warn",
|
|
"func-names": ["warn", "as-needed"]
|
|
}
|
|
}
|