jessyfront
Version:
Botfront is an open source chatbot platform based on Rasa.
34 lines • 982 B
JavaScript
module.exports = {
"env": {
"es6": true,
"node": true,
"mocha": true,
},
"extends": [
],
"settings": {
"import/resolver": [
]
},
"parser": "babel-eslint",
"rules": {
"quotes": ["error", "single"],
"comma-dangle": ["error", {
"objects": "always-multiline",
"arrays": "always-multiline",
"imports": "always-multiline",
"exports": "always-multiline",
"functions": "always-multiline",
}],
"indent": ["error", 4],
"max-len": ["error", 200],
"no-trailing-spaces": ["error", {"skipBlankLines": true}],
"no-extra-boolean-cast": "off",
"no-nested-ternary": "off",
"import/prefer-default-export": "off",
"react/jsx-indent": ["error", 4],
"react/jsx-indent-props": ["error", 4],
"react/forbid-prop-types": "off",
"react/no-array-index-key": "off",
},
};