Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Stylua #27

Merged
merged 2 commits into from
Aug 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions .stylua.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
column_width = 120
line_endings = "Unix"
indent_type = "Spaces"
indent_width = 2
quote_style = "AutoPreferDouble"
call_parentheses = "None"
collapse_simple_statement = "Never"

[sort_requires]
enabled = true
2 changes: 1 addition & 1 deletion lua/unclutter/plugin.lua
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
local autocmds = require "unclutter.autocmds"
local buffer = require "unclutter.buffer"
local tabline = require "unclutter.tabline"
local config = require "unclutter.config"
local tabline = require "unclutter.tabline"

---@class unclutter.plugin
local plugin = {}
Expand Down
2 changes: 1 addition & 1 deletion lua/unclutter/plugin_spec.lua
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
local mock = require "luassert.mock"
local M = require "unclutter.plugin"
local config = require "unclutter.config"
local mock = require "luassert.mock"

local autocmds, buffer, tabline

Expand Down
Loading