sp-dev-fx-webparts/samples/react-bot-framework-sso/bot/.eslintrc.js

18 lines
397 B
JavaScript
Raw Normal View History

2020-11-06 04:34:51 -05:00
module.exports = {
extends: 'standard',
rules: {
semi: [2, 'always'],
indent: [2, 4],
'no-return-await': 0,
'space-before-function-paren': [
2,
{
named: 'never',
anonymous: 'never',
asyncArrow: 'always'
}
],
'template-curly-spacing': [2, 'always']
}
};