Skip to content

Commit 70dfaec

Browse files
committed
eslint fixes
1 parent cecf0e0 commit 70dfaec

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

package/lib/ValidationContext.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,15 @@ export default class ValidationContext {
1717
Object.keys(schema).forEach(key => {
1818
const schemaElement = schema[key];
1919
schemaElement.type.definitions && schemaElement.type.definitions.forEach(def => {
20-
if(typeof def.type === "object") {
20+
if (typeof def.type === 'object') {
2121
addDeps(def.type._schema, keys.concat(key));
2222
} else {
23-
const fullKey = keys.concat(key).join(".");
23+
const fullKey = keys.concat(key).join('.');
2424
this._deps[fullKey] = new tracker.Dependency();
2525
}
26-
})
26+
});
2727
});
28-
}
28+
};
2929
addDeps(this._schema);
3030
}
3131
}

0 commit comments

Comments
 (0)