chore: adjust formatting to new clang-format.

- fixes wrapping for object literal keys called `template`.
- spacing in destructuring expressions.
- changes to keep trailing return types of functions closer to their
  function declaration.
- better formatting of string literals.

Closes #4828
This commit is contained in:
Martin Probst
2015-10-28 08:59:19 +01:00
parent 4a1b873fad
commit c02f2bdab0
50 changed files with 245 additions and 236 deletions

View File

@ -372,7 +372,8 @@ export function main() {
var ng1 = function() {
return {
scope: {title: '@'},
bindToController: true, template: '{{ctl.title}}',
bindToController: true,
template: '{{ctl.title}}',
controllerAs: 'ctl',
controller: Class({constructor: function() {}})
};
@ -400,7 +401,8 @@ export function main() {
var ng1 = function($rootScope) {
return {
scope: {title: '@'},
bindToController: true, template: '{{ctl.status}}',
bindToController: true,
template: '{{ctl.status}}',
require: 'ng1',
controller: Class({constructor: function() { this.status = 'WORKS'; }}),
link: function(scope, element, attrs, linkController) {
@ -437,7 +439,8 @@ export function main() {
var ng1 = function() {
return {
scope: {title: '@'},
bindToController: true, template: '{{parent.parent}}:{{ng1.status}}',
bindToController: true,
template: '{{parent.parent}}:{{ng1.status}}',
require: ['ng1', '^parent', '?^^notFound'],
controller: Class({constructor: function() { this.status = 'WORKS'; }}),
link: function(scope, element, attrs, linkControllers) {
@ -510,7 +513,8 @@ export function main() {
module.directive('ng1', function() {
return {
scope: {title: '='},
transclude: true, template: 'ng1[Hello {{title}}!](<span ng-transclude></span>)'
transclude: true,
template: 'ng1[Hello {{title}}!](<span ng-transclude></span>)'
};
});