UNPKG

356 BJavaScriptView Raw
1module.exports = {
2 extends: ['standard'],
3 rules: {
4 curly: [2, 'all'],
5 /*
6 This is inserted to make this compatible with prettier.
7 Once https://github.com/prettier/prettier/issues/3845 and https://github.com/prettier/prettier/issues/3847 are solved this might be not needed any more.
8 */
9 'space-before-function-paren': 0
10 }
11}