mirror of
https://github.com/luau-lang/luau.git
synced 2024-11-15 14:25:44 +08:00
Add documentation for upcoming CommentDirective lint (#361)
This commit is contained in:
parent
731e197757
commit
6aaaafcc8d
@ -317,3 +317,13 @@ The code above can be rewritten as follows to avoid the warning and the associat
|
||||
```lua
|
||||
local x = if flag then false else true
|
||||
```
|
||||
|
||||
## CommentDirective (26)
|
||||
|
||||
Luau uses comments that start from `!` to control certain aspects of analysis, for example setting type checking mode via `--!strict` or disabling individual lints with `--!nolint`. Unknown directives are ignored, for example `--!nostrict` doesn't have any effect on the type checking process as the correct spelling is `--!nonstrict`. This warning flags comment directives that are ignored during processing:
|
||||
|
||||
```lua
|
||||
--!nostrict
|
||||
-- Unknown comment directive 'nostrict'; did you mean 'nonstrict'?"
|
||||
```
|
||||
```
|
||||
|
Loading…
Reference in New Issue
Block a user