Add linting metatable field to design

This commit is contained in:
ffrostfall 2024-11-06 22:53:47 -05:00 committed by GitHub
parent 6926e4ea02
commit 2d2e432381
Signed by: DevComp
GPG key ID: B5690EEEBB952194

View file

@ -21,6 +21,8 @@ type Identity = {
} }
``` ```
This could cause confusion with table properties named `metatable`. To combat this, a lint could be added which will warn upon setting table properties named `metatable`. To silence this lint, `["metatable"]` would need to be used instead.
## Alternatives ## Alternatives
`type T = { metatable {} }` could be too similar to field syntax. An argument could be made that `type T = { metatable: {} }` is too similar to metatable syntax. We could change the keyword to be `@metatable`, similar to how it is currently expressed as when converting a type to a string. However, this introduces a sigil, which increases cognitive load and harms readability. `type T = { metatable {} }` could be too similar to field syntax. An argument could be made that `type T = { metatable: {} }` is too similar to metatable syntax. We could change the keyword to be `@metatable`, similar to how it is currently expressed as when converting a type to a string. However, this introduces a sigil, which increases cognitive load and harms readability.