pylint-2.17 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  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.11"
  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-py3"
  18. # version: "version:5.10.1"
  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-py3"
  34. # version: "version:1.15.0"
  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-py2_py3"
  42. # version: "version:0.4.6"
  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.15.8"
  57. # >
  58. # wheel: <
  59. # name: "infra/python/wheels/dill-py3"
  60. # version: "version:0.3.7"
  61. # >
  62. # wheel: <
  63. # name: "infra/python/wheels/platformdirs-py3"
  64. # version: "version:3.10.0"
  65. # >
  66. # wheel: <
  67. # name: "infra/python/wheels/pylint-py3"
  68. # version: "version:2.17.7"
  69. # >
  70. # wheel: <
  71. # name: "infra/python/wheels/tomlkit-py3"
  72. # version: "version:0.12.3"
  73. # >
  74. #
  75. # [VPYTHON:END]
  76. import sys
  77. import pylint_main
  78. if __name__ == '__main__':
  79. sys.exit(pylint_main.main(sys.argv[1:]))