Skip to content

Commit cce4f98

Browse files
committed
Fix linting
1 parent 8fecd57 commit cce4f98

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/rules/yaml-key-sort.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,9 +63,9 @@ export default class YamlKeySort extends RuleBuilder<YamlKeySortOptions> {
6363
const doc = parseYAML(yamlText);
6464
const startingPriorityKeys = getEmptyDocument(doc);
6565

66-
if(doc.contents == null) {
67-
return text;
68-
}
66+
if (doc.contents == null) {
67+
return text;
68+
}
6969

7070
let remainingKeys = this.getYAMLKeysSorted(yamlKeys, doc, startingPriorityKeys);
7171

0 commit comments

Comments
 (0)