bigbluebutton-Github/bigbluebutton-html5/.eslintrc.js
2017-06-05 13:26:47 +00:00

23 lines
465 B
JavaScript

module.exports = {
"extends": "airbnb",
"plugins": [
"react",
"jsx-a11y",
"import",
],
"env": {
"es6": true,
"node": true,
"browser": true,
"meteor": true,
},
"rules": {
"no-underscore-dangle": 0,
"import/extensions": [2, "never"],
"import/no-absolute-path": 0,
"import/no-unresolved": 0,
"import/no-extraneous-dependencies": 1,
"react/prop-types": 1,
},
};