Skip to content

Commit

Permalink
Remove unnecessary commas
Browse files Browse the repository at this point in the history
  • Loading branch information
vlaaad committed May 16, 2024
1 parent 0fd547d commit 682b4b3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/en/manuals/writing-code.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,12 +41,12 @@ Pressing <kbd>CTRL</kbd> + <kbd>Space</kbd> will show additional information abo
The built-in code editor performs code linting using [Luacheck](https://luacheck.readthedocs.io/en/stable/index.html) and [Lua language server](https://luals.github.io/wiki/diagnostics/). To configure the Luacheck, create a `.luacheckrc` file in the project root. You can read the [Luacheck configuration page](https://luacheck.readthedocs.io/en/stable/config.html) for the list of the available options. Defold uses the following defaults for the Luacheck configuration:

```lua
unused_args = false, -- don't warn on unused arguments (common for .script files)
max_line_length = false, -- don't warn on long lines
unused_args = false -- don't warn on unused arguments (common for .script files)
max_line_length = false -- don't warn on long lines
ignore = {
"611", -- line contains only whitespace
"612", -- line contains trailing whitespace
"614", -- trailing whitespace in a comment
"614" -- trailing whitespace in a comment
},
```

Expand Down

0 comments on commit 682b4b3

Please sign in to comment.