18 lines
397 B
JavaScript
18 lines
397 B
JavaScript
|
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']
|
||
|
}
|
||
|
};
|