.luacheckrc 526 B

123456789101112131415161718192021
  1. -- vim: ft=lua tw=80
  2. -- Don't report globals from luajit or busted (e.g. jit.os or describe).
  3. std = '+luajit +busted'
  4. -- One can't test these files properly; assume correctness.
  5. exclude_files = { '*/preload.lua' }
  6. -- Don't report unused self arguments of methods.
  7. self = false
  8. -- Rerun tests only if their modification time changed.
  9. cache = true
  10. ignore = {
  11. "631", -- max_line_length
  12. }
  13. -- Ignore whitespace issues in converted Vim legacy tests.
  14. --files["functional/legacy"] = {ignore = { "611", "612", "613", "621" }}