Update for 1.1
This commit is contained in:
parent
c53f2a8d85
commit
c68164e3e8
|
@ -0,0 +1,26 @@
|
||||||
|
column_limit: 100
|
||||||
|
indent_width: 2
|
||||||
|
use_tab: false
|
||||||
|
tab_width: 4
|
||||||
|
continuation_indent_width: 4
|
||||||
|
spaces_before_call: 1
|
||||||
|
keep_simple_control_block_one_line: false
|
||||||
|
keep_simple_function_one_line: false
|
||||||
|
align_args: true
|
||||||
|
break_after_functioncall_lp: true
|
||||||
|
break_before_functioncall_rp: true
|
||||||
|
align_parameter: true
|
||||||
|
chop_down_parameter: true
|
||||||
|
break_after_functiondef_lp: true
|
||||||
|
break_before_functiondef_rp: true
|
||||||
|
align_table_field: true
|
||||||
|
break_after_table_lb: true
|
||||||
|
break_before_table_rb: true
|
||||||
|
chop_down_table: true
|
||||||
|
chop_down_kv_table: true
|
||||||
|
table_sep: ","
|
||||||
|
column_table_limit: column_limit
|
||||||
|
extra_sep_at_table_end: true
|
||||||
|
break_after_operator: true
|
||||||
|
double_quote_to_single_quote: false
|
||||||
|
single_quote_to_double_quote: false
|
|
@ -6,5 +6,6 @@
|
||||||
"editor.detectIndentation": false,
|
"editor.detectIndentation": false,
|
||||||
"editor.tabSize": 2,
|
"editor.tabSize": 2,
|
||||||
"editor.insertSpaces": true,
|
"editor.insertSpaces": true,
|
||||||
}
|
},
|
||||||
|
"vscode-lua-format.configPath": ".vscode/.lua-format"
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,4 +1,9 @@
|
||||||
---------------------------------------------------------------------------------------------------
|
---------------------------------------------------------------------------------------------------
|
||||||
|
Version: 1.1.0
|
||||||
|
Date: 16.01.2021
|
||||||
|
Features:
|
||||||
|
- Update for 1.1
|
||||||
|
---------------------------------------------------------------------------------------------------
|
||||||
Version: 1.0.0
|
Version: 1.0.0
|
||||||
Date: 18.08.2020
|
Date: 18.08.2020
|
||||||
Features:
|
Features:
|
||||||
|
|
|
@ -1,12 +1,12 @@
|
||||||
{
|
{
|
||||||
"name": "CleanFloor",
|
"name": "CleanFloor",
|
||||||
"version": "1.0.0",
|
"version": "1.1.0",
|
||||||
"title": "Clean Floor",
|
"title": "Clean Floor",
|
||||||
"description": "Remove all decorations when placing floor tiles.",
|
"description": "Remove all decorations when placing floor tiles.",
|
||||||
"author": "David Skrundz",
|
"author": "David Skrundz",
|
||||||
"contact": "david@skrundz.ca",
|
"contact": "david@skrundz.ca",
|
||||||
"homepage": "https://github.com/DavidSkrundz/CleanFloor",
|
"homepage": "https://github.com/DavidSkrundz/CleanFloor",
|
||||||
"factorio_version": "1.0",
|
"factorio_version": "1.1",
|
||||||
"dependencies": [
|
"dependencies": [
|
||||||
"? base"
|
"? base"
|
||||||
]
|
]
|
||||||
|
|
Loading…
Reference in New Issue