Skip to content

Commit 09f88e3

Browse files
committed
chore: add fixme for entity lint methods
1 parent 1640493 commit 09f88e3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/core/src/lint.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ export async function lintEntityFile(opts: {
220220

221221
const ctx: WalkContext = {
222222
problems: [],
223-
specVersion: 'entity' as SpecVersion,
223+
specVersion: 'entity' as SpecVersion, // FIXME: this should be proper SpecVersion
224224
config,
225225
visitorsData: {},
226226
};

packages/core/src/rules/common/__tests__/entity-key-valid.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ function lintEntityKey(source: string): WalkContext['problems'] {
1717

1818
const ctx: WalkContext = {
1919
problems: [],
20-
specVersion: 'entity' as SpecVersion,
20+
specVersion: 'entity' as SpecVersion, // FIXME: this should be proper SpecVersion
2121
config: {} as Config,
2222
visitorsData: {},
2323
};

0 commit comments

Comments
 (0)