File tree Expand file tree Collapse file tree 2 files changed +50
-0
lines changed Expand file tree Collapse file tree 2 files changed +50
-0
lines changed Original file line number Diff line number Diff line change 1+ ---
2+ base : lua51
3+
4+ globals :
5+ _ :
6+ any : true
7+ a :
8+ any : true
9+ jit :
10+ any : true
11+ bit :
12+ any : true
13+ vim :
14+ any : true
15+ assert :
16+ args :
17+ - type : bool
18+ - type : string
19+ required : false
20+ after_each :
21+ args :
22+ - type : function
23+ before_each :
24+ args :
25+ - type : function
26+ describe :
27+ args :
28+ - type : string
29+ - type : function
30+ it :
31+ args :
32+ - type : string
33+ - type : function
Original file line number Diff line number Diff line change 1+ std =" neovim"
2+
3+ exclude = [
4+ " lua/plenary/profile/lua_profiler.lua" ,
5+ " lua/plenary/profile/memory_profiler.lua" ,
6+ " lua/plenary/profile/p.lua" , # token `goto` detected as `parse_error`
7+ " lua/plenary/async_lib/*.lua" ,
8+ ]
9+
10+ [rules ]
11+ global_usage = " warn"
12+ deprecated = " warn" # If change for `allow` it will rely in `lua_ls` diagnostics alone
13+ multiple_statements = " warn"
14+ incorrect_standard_library_use = " allow" # This is for cases like `string.format`, `package.config`, etc.
15+ mixed_table = " allow"
16+ unused_variable = " warn"
17+ undefined_variable = " warn"
You can’t perform that action at this time.
0 commit comments