mirror of
https://github.com/luau-lang/luau.git
synced 2025-04-04 10:50:54 +01:00
Update lint.md
Add documentation for the upcoming DuplicateCondition lint
This commit is contained in:
parent
01d9f8daf9
commit
15753833b0
1 changed files with 7 additions and 0 deletions
|
@ -284,3 +284,10 @@ table.insert(t, 0, 42) -- table.insert uses index 0 but arrays are 1-based; did
|
|||
|
||||
table.insert(t, #t+1, 42) -- table.insert will append the value to the table; consider removing the second argument for efficiency
|
||||
```
|
||||
## DuplicateCondition (24)
|
||||
|
||||
When checking multiple conditions via `and/or` or `if/elseif`, a copy & paste error may result in checking the same condition redundantly. This almost always indicates a bug, so a warning is emitted when use of a duplicate condition is detected.
|
||||
|
||||
```lua
|
||||
assert(self._adorns[normID1] and self._adorns[normID1]) -- Condition has already been checked on column 8
|
||||
```
|
||||
|
|
Loading…
Add table
Reference in a new issue