pylint-2.7 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. #!/usr/bin/env vpython3
  2. # Copyright 2019 The Chromium Authors. All rights reserved.
  3. # Use of this source code is governed by a BSD-style license that can be
  4. # found in the LICENSE file.
  5. # Note: We use tags here instead of refs because refs will always hit the
  6. # network to see if there are any updates.
  7. # [VPYTHON:BEGIN]
  8. # # Third party dependencies. These are only listed because pylint itself needs
  9. # # them. Feel free to add/remove anything here.
  10. # python_version: "3.8"
  11. #
  12. # wheel: <
  13. # name: "infra/python/wheels/futures-py2_py3"
  14. # version: "version:3.1.1"
  15. # >
  16. # wheel: <
  17. # name: "infra/python/wheels/isort-py2_py3"
  18. # version: "version:4.3.4"
  19. # >
  20. # wheel: <
  21. # name: "infra/python/wheels/mccabe-py2_py3"
  22. # version: "version:0.6.1"
  23. # >
  24. # wheel: <
  25. # name: "infra/python/wheels/six-py2_py3"
  26. # version: "version:1.15.0"
  27. # >
  28. # wheel: <
  29. # name: "infra/python/wheels/toml-py3"
  30. # version: "version:0.10.1"
  31. # >
  32. # wheel: <
  33. # name: "infra/python/wheels/wrapt/${vpython_platform}"
  34. # version: "version:1.12.1"
  35. # >
  36. # wheel: <
  37. # name: "infra/python/wheels/lazy-object-proxy/${vpython_platform}"
  38. # version: "version:1.4.3"
  39. # >
  40. # wheel: <
  41. # name: "infra/python/wheels/colorama-py3"
  42. # version: "version:0.4.1"
  43. # >
  44. #
  45. # # Pylint extensions.
  46. #
  47. # wheel: <
  48. # name: "infra/python/wheels/pylint-quotes-py3"
  49. # version: "version:0.2.1"
  50. # >
  51. #
  52. # # Pylint dependencies.
  53. #
  54. # wheel: <
  55. # name: "infra/python/wheels/astroid-py3"
  56. # version: "version:2.5.3"
  57. # >
  58. # wheel: <
  59. # name: "infra/python/wheels/pylint-py3"
  60. # version: "version:2.7.4"
  61. # >
  62. #
  63. # [VPYTHON:END]
  64. import sys
  65. import pylint_main
  66. if __name__ == '__main__':
  67. sys.exit(pylint_main.main(sys.argv[1:]))