Skip to content

Commit

Permalink
Merge branch 'main' into fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
chriscerie authored Nov 8, 2023
2 parents ba45535 + 92afa63 commit de9aeba
Show file tree
Hide file tree
Showing 2 changed files with 155 additions and 1 deletion.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,9 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
- Added `no-exclude` cli flag to disable excludes.
- When given in standard library format, additional information now shows up in `incorrect_standard_library_use` missing required parameter errors.
- Added new [`mixed_table` lint](https://kampfkarren.github.io/selene/lints/mixed_table.html), which will warn against mixed tables.
- Added new [`fix`](https://kampfkarren.github.io/selene/cli/usage.html#fix) flag, which will automatically apply lint suggestions.
- Added `bit32.byteswap` to Luau standard library
- Added `buffer` library to Luau standard library
- Added new [`--fix`](https://kampfkarren.github.io/selene/cli/usage.html#fix) flag, which will automatically apply lint suggestions.

### Fixed
- `string.pack` and `string.unpack` now have proper function signatures in the Lua 5.3 standard library.
Expand Down
152 changes: 152 additions & 0 deletions selene-lib/default_std/luau.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,10 @@ globals:
args:
- type: "..."
must_use: true
bit32.byteswap:
args:
- type: number
must_use: true
bit32.countlz:
args:
- type: number
Expand Down Expand Up @@ -72,6 +76,154 @@ globals:
- type: number
- type: number
must_use: true
buffer.copy:
args:
- type:
display: buffer
- type: number
- type:
display: buffer
- required: false
type: number
- required: false
type: number
buffer.create:
args:
- type: number
must_use: true
buffer.fill:
args:
- type:
display: buffer
- type: number
- type: number
- required: false
type: number
buffer.fromstring:
args:
- type: string
must_use: true
buffer.len:
args:
- type:
display: buffer
must_use: true
buffer.readf32:
args:
- type:
display: buffer
- type: number
must_use: true
buffer.readf64:
args:
- type:
display: buffer
- type: number
must_use: true
buffer.readi8:
args:
- type:
display: buffer
- type: number
must_use: true
buffer.readi16:
args:
- type:
display: buffer
- type: number
must_use: true
buffer.readi32:
args:
- type:
display: buffer
- type: number
must_use: true
buffer.readstring:
args:
- type:
display: buffer
- type: number
- type: number
must_use: true
buffer.readu8:
args:
- type:
display: buffer
- type: number
must_use: true
buffer.readu16:
args:
- type:
display: buffer
- type: number
must_use: true
buffer.readu32:
args:
- type:
display: buffer
- type: number
must_use: true
buffer.tostring:
args:
- type:
display: buffer
must_use: true
buffer.writef32:
args:
- type:
display: buffer
- type: number
- type: number
buffer.writef64:
args:
- type:
display: buffer
- type: number
- type: number
buffer.writei8:
args:
- type:
display: buffer
- type: number
- type: number
buffer.writei16:
args:
- type:
display: buffer
- type: number
- type: number
buffer.writei32:
args:
- type:
display: buffer
- type: number
- type: number
buffer.writestring:
args:
- type:
display: buffer
- type: number
- type: string
- required: false
type: number
buffer.writeu8:
args:
- type:
display: buffer
- type: number
- type: number
buffer.writeu16:
args:
- type:
display: buffer
- type: number
- type: number
buffer.writeu32:
args:
- type:
display: buffer
- type: number
- type: number
collectgarbage:
args:
- type:
Expand Down

0 comments on commit de9aeba

Please sign in to comment.