add semicolons to const declarations in 19.2

This commit is contained in:
Al Pal
2015-09-09 20:38:43 -07:00
parent 24dc126e4b
commit 9405b1d396

View File

@@ -1561,14 +1561,14 @@ Other Style Guides
- lastName: 'Nightingale'
+ lastName: 'Nightingale',
+ inventorOf: ['coxcomb graph', 'modern nursing']
}
};
// good - git diff with trailing comma
const hero = {
firstName: 'Florence',
lastName: 'Nightingale',
+ inventorOf: ['coxcomb chart', 'modern nursing'],
}
};
// bad
const hero = {