mirror of
https://github.com/lune-org/lune.git
synced 2025-01-07 11:59:10 +00:00
Fix .editorconfig and formatting
This commit is contained in:
parent
c063230f4c
commit
422a097598
12 changed files with 490 additions and 488 deletions
|
@ -5,13 +5,11 @@ charset = utf-8
|
||||||
end_of_line = lf
|
end_of_line = lf
|
||||||
trim_trailing_whitespace = true
|
trim_trailing_whitespace = true
|
||||||
insert_final_newline = true
|
insert_final_newline = true
|
||||||
indent_style = tab
|
|
||||||
indent_size = 4
|
|
||||||
|
|
||||||
[*.{json,jsonc,json5]
|
[*.{json,jsonc,json5}]
|
||||||
indent_style = space
|
indent_style = space
|
||||||
indent_size = 4
|
indent_size = 4
|
||||||
|
|
||||||
[*.{yml,yaml]
|
[*.{yml,yaml}]
|
||||||
indent_style = space
|
indent_style = space
|
||||||
indent_size = 2
|
indent_size = 2
|
||||||
|
|
4
.luaurc
4
.luaurc
|
@ -1,6 +1,8 @@
|
||||||
{
|
{
|
||||||
"languageMode": "strict",
|
"languageMode": "strict",
|
||||||
"lint": { "*": true },
|
"lint": {
|
||||||
|
"*": true
|
||||||
|
},
|
||||||
"lintErrors": false,
|
"lintErrors": false,
|
||||||
"typeErrors": true,
|
"typeErrors": true,
|
||||||
"globals": []
|
"globals": []
|
||||||
|
|
|
@ -13,6 +13,8 @@ This will look for the file `script-name.luau`**_<sup>[1]</sup>_** in a few loca
|
||||||
- The current directory
|
- The current directory
|
||||||
- The folder `lune` in the current directory, if it exists
|
- The folder `lune` in the current directory, if it exists
|
||||||
- The folder `.lune` in the current directory, if it exists
|
- The folder `.lune` in the current directory, if it exists
|
||||||
|
- The folder `lune` in the _home_ directory, if it exists
|
||||||
|
- The folder `.lune` in the _home_ directory, if it exists
|
||||||
|
|
||||||
## 🎛️ Passing Command-Line Arguments
|
## 🎛️ Passing Command-Line Arguments
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue