Skip to content

Commit da2df8a

Browse files
committed
run lint
1 parent c7cee06 commit da2df8a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/object.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -174,11 +174,11 @@ ReflectionObject.prototype.resolve = function resolve() {
174174
ReflectionObject.prototype._resolveFeatures = function _resolveFeatures() {
175175
var defaults = {};
176176

177-
if (this.root.getOption('syntax') === 'proto2') {
177+
if (this.root.getOption("syntax") === "proto2") {
178178
defaults = Object.assign({}, proto2Defaults);
179-
} else if (this.root.getOption('syntax') === 'proto3') {
180-
defaults = Object.assign({}, proto3Defaults)
181-
} else if (this.root.getOption('edition') === '2023') {
179+
} else if (this.root.getOption("syntax") === "proto3") {
180+
defaults = Object.assign({}, proto3Defaults);
181+
} else if (this.root.getOption("edition") === "2023") {
182182
defaults = Object.assign({}, editions2023Defaults);
183183
}
184184

0 commit comments

Comments
 (0)