We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7e8190f commit 8c0e864Copy full SHA for 8c0e864
.editorconfig
@@ -0,0 +1,14 @@
1
+root = true
2
+
3
+[*]
4
+end_of_line = lf
5
+insert_final_newline = true
6
+charset = utf-8
7
+trim_trailing_whitespace = true
8
9
+[*.{lua,vim}]
10
+indent_style = space
11
+indent_size = 2
12
13
+[*.md]
14
+trim_trailing_whitespace = false
.luacheckrc
@@ -53,8 +53,15 @@ ignore = {
53
"631", -- max_line_length
54
"611", -- line contains only whitespace
55
"612", -- inconsistent indentation
56
+ "613", -- line has trailing whitespace
57
}
58
59
exclude_files = {
60
"tests/",
-}
61
+}
62
63
+max_line_length = 100
64
+max_string_line_length = 100
65
+max_comment_line_length = 100
66
+max_code_line_length = 100
67
+max_cyclomatic_complexity = 20
0 commit comments