_pylint 2.8 KB

12345678910111213141516171819202122232425262728293031
  1. #compdef pylint
  2. #
  3. # this is zsh completion function file.
  4. # generated by genzshcomp(ver: 0.5.1)
  5. #
  6. typeset -A opt_args
  7. local context state line
  8. _arguments -s -S \
  9. "--help[show this help message and exit]:" \
  10. "-h[show this help message and exit]:" \
  11. "--version[show program's version number and exit]:" \
  12. "--long-help[more verbose help.]" \
  13. "--rcfile[Specify a configuration file.]::<file>:_files" \
  14. "--errors-only[In error mode, checkers without error messages are disabled and for others, only the ERROR messages are displayed, and no reports are done by default]" \
  15. "-E[In error mode, checkers without error messages are disabled and for others, only the ERROR messages are displayed, and no reports are done by default]" \
  16. "--ignore[Add files or directories to the blacklist. They should be base names, not paths. \[current: CVS\]]::<file>[,<file>...]:_files" \
  17. "--help-msg[Display a help message for the given message id and exit. The value may be a comma separated list of message ids.]::<msg-id>:_files" \
  18. "--generate-rcfile[Generate a sample configuration file according to the current configuration. You can put other options before this one to get them in the generated configuration.]" \
  19. "--enable[Enable the message, report, category or checker with the given id(s). You can either give multiple identifier separated by comma (,) or put this option multiple time.]::<msg ids>:_files" \
  20. "-e[Enable the message, report, category or checker with the given id(s). You can either give multiple identifier separated by comma (,) or put this option multiple time.]::<msg ids>:_files" \
  21. "--disable[Disable the message, report, category or checker with the given id(s). You can either give multiple identifier separated by comma (,) or put this option multiple time (only on the command line, not in the configuration file where it should appear only once).]::<msg ids>:_files" \
  22. "-d[Disable the message, report, category or checker with the given id(s). You can either give multiple identifier separated by comma (,) or put this option multiple time (only on the command line, not in the configuration file where it should appear only once).]::<msg ids>:_files" \
  23. "--output-format[Set the output format. Available formats are text, parseable, colorized, msvs (visual studio) and html \[current: text\]]::<format>:_files" \
  24. "-f[Set the output format. Available formats are text, parseable, colorized, msvs (visual studio) and html \[current: text\]]::<format>:_files" \
  25. "--include-ids[Include message's id in output \[current: no\]]::<y_or_n>:_files" \
  26. "-i[Include message's id in output \[current: no\]]::<y_or_n>:_files" \
  27. "--reports[Tells whether to display a full report or only the messages \[current: yes\]]::<y_or_n>:_files" \
  28. "-r[Tells whether to display a full report or only the messages \[current: yes\]]::<y_or_n>:_files" \
  29. "*::args:_files"