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/gulp-options.js b/gulp-options.js
index e10c5d4..ea67708 100644
--- a/gulp-options.js
+++ b/gulp-options.js
@@ -4,11 +4,11 @@
'use strict';
module.exports = {
- 'targetFolderPath': './target',
- 'srcFolderPath': './app',
- 'tempFolderPath': __dirname + '/.temp',
- 'nodeModulesFolderPath': './node_modules',
- 'bowerFolderPath': __dirname + '/bower_components',
- 'dirname': __dirname,
- 'excludePath': '!./app/vendors/**/*'
+ 'targetFolderPath': './target',
+ 'srcFolderPath': './app',
+ 'tempFolderPath': __dirname + '/.temp',
+ 'nodeModulesFolderPath': './node_modules',
+ 'bowerFolderPath': __dirname + '/bower_components',
+ 'dirname': __dirname,
+ 'excludePath': '!./app/vendors/**/*'
};