我已经像这样在javascript中对齐了变量
$scope.test1 = [];
$scope.other_thing = [];
$scope.dropped_other_thing = [];
$scope.aaaaaa = [];
$scope.validDates = true;
当我将集成格式(美化)应用于CTRL + ALT + F格式时 将代码更改为此:
$scope.test1 = [];
$scope.other_thing = [];
$scope.dropped_other_thing = [];
$scope.aaaaaa = [];
$scope.validDates = true;
在这种情况下,我想保留原始格式,但是我不知道怎么做。