Development of an internal social media platform with personalised dashboards for students
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

__init__.py 871B

1234567891011121314151617181920212223242526272829303132
  1. # Copyright (c) 2008, 2012 LOGILAB S.A. (Paris, FRANCE) <contact@logilab.fr>
  2. # Copyright (c) 2014, 2016-2017 Claudiu Popa <pcmanticore@gmail.com>
  3. # Copyright (c) 2014 Arun Persaud <arun@nubati.net>
  4. # Copyright (c) 2015 Ionel Cristian Maries <contact@ionelmc.ro>
  5. # Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
  6. # For details: https://github.com/PyCQA/pylint/blob/master/COPYING
  7. import sys
  8. from .__pkginfo__ import version as __version__
  9. def run_pylint():
  10. """run pylint"""
  11. from pylint.lint import Run
  12. Run(sys.argv[1:])
  13. def run_epylint():
  14. """run pylint"""
  15. from pylint.epylint import Run
  16. Run()
  17. def run_pyreverse():
  18. """run pyreverse"""
  19. from pylint.pyreverse.main import Run
  20. Run(sys.argv[1:])
  21. def run_symilar():
  22. """run symilar"""
  23. from pylint.checkers.similar import Run
  24. Run(sys.argv[1:])