Handle reserved words #183
Annotations
10 errors and 1 warning
Test:
packages/core/test/name-policy.test.tsx#L16
Error: Render is incorrect
- Expected
+ Received
+
namehi
❯ test/name-policy.test.tsx:16:14
|
Test:
packages/typescript/test/enum.test.tsx#L17
Error: Render is incorrect
- Expected
+ Received
+
enum MyEnum {
foo = 1,
bar = 2
}
❯ test/enum.test.tsx:17:5
|
Test:
packages/typescript/test/enum.test.tsx#L35
Error: Render is incorrect
- Expected
+ Received
+
enum MyEnum {
foo = "1",
bar = 2
}
❯ test/enum.test.tsx:35:5
|
Test:
packages/typescript/test/enum.test.tsx#L55
Error: Render is incorrect
- Expected
+ Received
+
enum MyEnum {
foo = 1,
bar = 2
}
❯ test/enum.test.tsx:55:5
|
Test:
packages/typescript/test/enum.test.tsx#L77
Error: Render is incorrect
- Expected
+ Received
+
enum MyEnum {
foo = 1,
bar = 2,
custom = "hello"
}
❯ test/enum.test.tsx:77:5
|
Test:
packages/typescript/test/enum.test.tsx#L100
Error: Render is incorrect
- Expected
+ Received
+
enum MyEnum {
- fooProp = 1,
+ FooProp = 1,
- barProp = 2
+ BarProp = 2
}
❯ test/enum.test.tsx:100:5
|
Test:
packages/typescript/test/enum.test.tsx#L123
Error: Render is incorrect
- Expected
+ Received
+
enum MyEnum {
foo = "1",
bar = 2
}
MyEnum.foo;
❯ test/enum.test.tsx:123:7
|
Test:
packages/typescript/test/values.test.tsx#L177
Error: Render is incorrect
- Expected
+ Received
+
const refme = {
foo: "hello"
};
refme.foo
❯ test/values.test.tsx:177:18
|
Test:
packages/typescript/test/values.test.tsx#L206
Error: Render is incorrect
- Expected
+ Received
+
const refme = {
foo: {
bar: "hello";
}
};
refme.foo.bar
❯ test/values.test.tsx:206:18
|
Test:
packages/typescript/test/values.test.tsx#L241
Error: Render is incorrect
- Expected
+ Received
+
export const refme = {
foo: {
bar: "hello";
}
};
import { refme } from "./foo.js";
console.log(refme.foo.bar);
❯ test/values.test.tsx:241:18
|
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
Loading