chore: auto-fix violations of comma-dangle rule (#5625)

This commit is contained in:
Rachel Fenichel
2021-10-21 09:01:51 -07:00
committed by GitHub
parent 3851b14627
commit e8d6f7f408
74 changed files with 492 additions and 492 deletions

View File

@@ -303,7 +303,7 @@ FieldAngle.prototype.dropdownCreate_ = function() {
'version': '1.1',
'height': (FieldAngle.HALF * 2) + 'px',
'width': (FieldAngle.HALF * 2) + 'px',
'style': 'touch-action: none'
'style': 'touch-action: none',
},
null);
const circle = dom.createSvgElement(
@@ -311,7 +311,7 @@ FieldAngle.prototype.dropdownCreate_ = function() {
'cx': FieldAngle.HALF,
'cy': FieldAngle.HALF,
'r': FieldAngle.RADIUS,
'class': 'blocklyAngleCircle'
'class': 'blocklyAngleCircle',
},
svg);
this.gauge_ =
@@ -320,7 +320,7 @@ FieldAngle.prototype.dropdownCreate_ = function() {
Svg.LINE, {
'x1': FieldAngle.HALF,
'y1': FieldAngle.HALF,
'class': 'blocklyAngleLine'
'class': 'blocklyAngleLine',
},
svg);
// Draw markers around the edge.
@@ -334,7 +334,7 @@ FieldAngle.prototype.dropdownCreate_ = function() {
'y2': FieldAngle.HALF,
'class': 'blocklyAngleMarks',
'transform': 'rotate(' + angle + ',' + FieldAngle.HALF + ',' +
FieldAngle.HALF + ')'
FieldAngle.HALF + ')',
},
svg);
}