File: custom_formatter.lua

package info (click to toggle)
luacheck 1.2.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,704 kB
  • sloc: sh: 106; makefile: 96; python: 35
file content (9 lines) | stat: -rw-r--r-- 227 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
return function(report, file_names, options)
   return ([[
Files: %d
Formatter: %s
Quiet: %d
Color: %s
Codes: %s]]):format(#file_names, options.formatter, options.quiet,
   tostring(options.color), tostring(options.codes))
end