matrix-whisper-bridge/.eslintrc

15 lines
309 B
Plaintext
Raw Normal View History

2018-09-06 09:37:37 +00:00
{
"extends": "airbnb",
"globals": {
"artifacts": false,
"document": false,
"window": false
},
"rules": {
"arrow-body-style": [2, "as-needed"],
"arrow-parens": [2, "as-needed"],
"import/prefer-default-export": [2, "never"],
"space-before-function-paren": [2, "never"]
}
}