Skip to content

Commit a202fa3

Browse files
committed
refactor: change the code format rules
1 parent deaaf0c commit a202fa3

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.stylua.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
column_width = 120
1+
column_width = 80
22
line_endings = "Unix"
3-
indent_type = "Spaces"
3+
indent_type = "Tabs"
44
indent_width = 2
5-
quote_style = "AutoPreferDouble"
5+
quote_style = "AutoPreferSingle"
66
no_call_parentheses = false

lua/plugin_name/module.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ local M = {}
33

44
---@return string
55
M.my_first_function = function()
6-
return "hello world!"
6+
return 'hello world!'
77
end
88

99
return M

0 commit comments

Comments
 (0)