blob: 69a0b413c66c5db45ef49cf93ae23f4fe2187f0c [file] [log] [blame]
Mike Frysinger0d07dd22025-01-08 19:42:241#!/usr/bin/env vpython3
2# Copyright 2025 The Chromium Authors
3# Use of this source code is governed by a BSD-style license that can be
4# found in the LICENSE file.
5
6# Note: We use tags here instead of refs because refs will always hit the
7# network to see if there are any updates.
8
9# [VPYTHON:BEGIN]
10# # Third party dependencies. These are only listed because pylint itself needs
11# # them. Feel free to add/remove anything here.
12# python_version: "3.11"
13#
14# wheel: <
15# name: "infra/python/wheels/isort-py3"
16# version: "version:5.10.1"
17# >
18# wheel: <
19# name: "infra/python/wheels/mccabe-py2_py3"
20# version: "version:0.6.1"
21# >
22# wheel: <
23# name: "infra/python/wheels/colorama-py2_py3"
24# version: "version:0.4.6"
25# >
26#
27# # Pylint dependencies.
28#
29# wheel: <
30# name: "infra/python/wheels/astroid-py3"
31# version: "version:3.2.4"
32# >
33# wheel: <
34# name: "infra/python/wheels/dill-py3"
35# version: "version:0.3.7"
36# >
37# wheel: <
38# name: "infra/python/wheels/platformdirs-py3"
39# version: "version:3.10.0"
40# >
41# wheel: <
42# name: "infra/python/wheels/pylint-py3"
43# version: "version:3.2.7"
44# >
45# wheel: <
46# name: "infra/python/wheels/tomlkit-py3"
47# version: "version:0.12.3"
48# >
49#
50# [VPYTHON:END]
51
52import sys
53
54import pylint_main
55
56if __name__ == '__main__':
57 sys.exit(pylint_main.main(sys.argv[1:]))