lbry-desktop/.eslintrc.json
Igor Gassmann 52f2d6140d chore: remove ESLint Prettier-related errors
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.
2018-03-06 17:47:09 -05:00

34 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"]
}
}