UNPKG

356 BJavaScriptView Raw
1module.exports = {
2 extends: ['standard'],
3 rules: {
4 /*
5 This is inserted to make this compatible with prettier.
6 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.
7 */
8 'space-before-function-paren': 0,
9 curly: [2, 'all']
10 }
11}