diff options
| author | Christian Clason <c.clason@uni-graz.at> | 2025-12-05 15:32:28 +0100 |
|---|---|---|
| committer | Christian Clason <ch.clason+github@icloud.com> | 2025-12-06 11:16:30 +0100 |
| commit | e0eec76dad852814e5972aa66ec2dc98d03525a8 (patch) | |
| tree | 156216442bb1930c5c5190d17eeeff378489d660 /.emmyrc.json | |
| parent | feat(angular): add style_unit highlighting(#8312) (diff) | |
| download | nvim-treesitter-e0eec76dad852814e5972aa66ec2dc98d03525a8.tar nvim-treesitter-e0eec76dad852814e5972aa66ec2dc98d03525a8.tar.gz nvim-treesitter-e0eec76dad852814e5972aa66ec2dc98d03525a8.tar.bz2 nvim-treesitter-e0eec76dad852814e5972aa66ec2dc98d03525a8.tar.lz nvim-treesitter-e0eec76dad852814e5972aa66ec2dc98d03525a8.tar.xz nvim-treesitter-e0eec76dad852814e5972aa66ec2dc98d03525a8.tar.zst nvim-treesitter-e0eec76dad852814e5972aa66ec2dc98d03525a8.zip | |
fix(lua): fix some emmyluals warnings
Diffstat (limited to '.emmyrc.json')
| -rw-r--r-- | .emmyrc.json | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/.emmyrc.json b/.emmyrc.json new file mode 100644 index 000000000..34d1e0b86 --- /dev/null +++ b/.emmyrc.json @@ -0,0 +1,25 @@ +{ + "$schema": "https://raw.githubusercontent.com/EmmyLuaLs/emmylua-analyzer-rust/refs/heads/main/crates/emmylua_code_analysis/resources/schema.json", + "format": { + "externalTool": { + "program": "stylua", + "args": [ + "-", + "--stdin-filepath", + "${file}" + ] + } + }, + "diagnostics": { + "disable": [ + "unnecessary-if" + ] + }, + "codeAction": { + "insertSpace": true + }, + "strict": { + "typeCall": true, + "arrayIndex": true + } +} |
