Run js-beautify and fixjsstyle on code
Found this pointer on stackoverflow:
https://stackoverflow.com/a/31660434/5508494
End goal is to get the code formatted well enough that
clang format will run correctly against it.
Change-Id: I80053e78d253d8eee49233e42d55e5807ae8fdc8
Signed-off-by: Andrew Geissler <geissonator@yahoo.com>
diff --git a/karma.conf.js b/karma.conf.js
index 6c355f3..3707578 100644
--- a/karma.conf.js
+++ b/karma.conf.js
@@ -1,5 +1,5 @@
// Reference: http://karma-runner.github.io/0.12/config/configuration-file.html
-module.exports = function karmaConfig (config) {
+module.exports = function karmaConfig(config) {
config.set({
frameworks: [
// Reference: https://github.com/karma-runner/karma-jasmine
@@ -39,9 +39,12 @@
// Configure code coverage reporter
coverageReporter: {
dir: 'coverage/',
- reporters: [
- {type: 'text-summary'},
- {type: 'html'}
+ reporters: [{
+ type: 'text-summary'
+ },
+ {
+ type: 'html'
+ }
]
},