blob: 7fd223ebc435e4918913f76170ea10375951dbe9 [file] [log] [blame]
Joey Armstrongbb26e932024-01-29 16:17:27 -05001.. _code--makefile-lint-targets:
Joey Armstrongfb8f3c82024-01-29 10:13:18 -05002
Joey Armstronga9a16b62023-11-01 14:31:15 -04003======================================
4Makefile Lint Targets: Syntax Checking
5======================================
Joey Armstronga8bc8e12022-12-04 07:06:59 -05006
Joey Armstrong477381e2024-02-11 12:59:59 -05007Makefile Linting: By language
8-----------------------------
Joey Armstronga8bc8e12022-12-04 07:06:59 -05009
10.. code:: bash
11
Joey Armstrong477381e2024-02-11 12:59:59 -050012 % git clone ssh://gerrit.opencord.org:29418/onf-make.git
13 % cd onf-make
14
15 % make help | grep lint
Joey Armstronga8bc8e12022-12-04 07:06:59 -050016 lint-chart chart_version_check.sh
Joey Armstrong4de98b72023-02-09 14:51:38 -050017 lint-doc8 Syntax check *.rst documentation files.
Joey Armstronga8bc8e12022-12-04 07:06:59 -050018 lint-helm Syntax check helm configs
19 lint-json Syntax check json sources
20 lint-license Verify sources contain a license block.
Joey Armstronga8bc8e12022-12-04 07:06:59 -050021 lint-robot Syntax check robot sources using rflint
22 lint-shell Syntax check bash,bourne,etc sources
23 lint-yaml Syntax check yaml source using yamllint
Joey Armstronga8bc8e12022-12-04 07:06:59 -050024
Joey Armstrong4de98b72023-02-09 14:51:38 -050025 [PYTHON]
Joey Armstronga2fa6582023-04-07 11:03:36 -040026 lint-python Syntax check using available python tools
27 lint-flake8 Syntax check using tool flake8
28 lint-pylint Syntax check using tool pylint
Joey Armstrong4de98b72023-02-09 14:51:38 -050029
Joey Armstronga8bc8e12022-12-04 07:06:59 -050030|
31
Joey Armstrong477381e2024-02-11 12:59:59 -050032Makefile Linting: By language target
33------------------------------------
34
35.. list-table:: Bulk sandbox linting
36 :widths: 20, 60
37 :header-rows: 1
38
39 * - Make Target
40 - Description
41 * - help | grpe lint
42 - Display available help for lint targets and flags.
43 * - make lint
44 - Invoke all source linters, linting is conditional by language.
45
46.. list-table:: Language and tool specific linting targets
47 :widths: 20, 60
48 :header-rows: 1
49
50 * - lint-{topic}-help
51 - Display extended help for a topic, supported targets and flags, etc.
52 * - lint-{topic}-all
53 - Lint everything available by file extension.
54 * - lint-{topic}-mod
55 - Lint locally modified files (git ls-files -m | lint)
56 * - lint-{topic}-src
57 - Lint a list of files passed in (make lint-{topic}-src VAR=list-of-files)
58
Joey Armstrong82180592024-02-10 15:34:21 -050059.. seealso::
60
Eric Ball4cc56b02025-03-25 12:36:33 -070061 - :ref:`Makefile Target lint-chart`
62 - :ref:`Makefile Target lint-helm`
63 - :ref:`Makefile Target lint-robot`
Joey Armstrong82180592024-02-10 15:34:21 -050064
Joey Armstrong477381e2024-02-11 12:59:59 -050065|
Joey Armstronga8bc8e12022-12-04 07:06:59 -050066
67All Sources
Joey Armstronga9a16b62023-11-01 14:31:15 -040068===========
Joey Armstronga8bc8e12022-12-04 07:06:59 -050069
70The generic lint target can be used to invoke all defined lint targets.
71
72.. code:: bash
73
74 make clean
75 make lint 2>&1 | tee log
76
77|
78
Joey Armstrongb544dff2022-12-07 15:12:05 -050079Makefile help
Joey Armstronga9a16b62023-11-01 14:31:15 -040080=============
Joey Armstrongb544dff2022-12-07 15:12:05 -050081
Joey Armstrongbd6cc3d2023-01-09 19:52:12 -050082Individual Makefiles support a help target that will display a list of
Joey Armstrongb544dff2022-12-07 15:12:05 -050083targets and functionality supported.
84
85.. code:: bash
86
87 make help
Joey Armstronga9a16b62023-11-01 14:31:15 -040088 make help | grep {topic}
89
90.. list-table:: help
91 :widths: 20, 60
92 :header-rows: 1
93
94 * - Make Target
95 - Description
96 * - help
97 - Display available help for targets and flags
98 * - make help | lint-{topic}
99 - Display summary usage for lint-doc8, lint-license, lint-make
100 * - lint-{topic}-help
101 - Display extended help for a topic, supported makefile targets, etc
102
103Legacy Help Usage
104-----------------
105
106.. code:: bash
107
108 make help
Joey Armstrongb544dff2022-12-07 15:12:05 -0500109 make help-verbose
110 make help VERBOSE=1
111
112|
113
114
Joey Armstronga9a16b62023-11-01 14:31:15 -0400115doc8 / restructuredText (rst)
116=============================
Joey Armstrong4de98b72023-02-09 14:51:38 -0500117
118Command: `doc8 <https://pypi.org/project/doc8/>`_
119
Joey Armstronga9a16b62023-11-01 14:31:15 -0400120.. list-table:: Makefile Targets
121 :widths: 20, 60
122 :header-rows: 1
123
124 * - Target
125 - Description
126 * - help
127 - Display item ``lint-doc8`` as a summary help topic item.
128 * - lint-doc8-help
129 - Display extended help for ``lint-doc8`` targets
130 * -
131 -
132 * - lint-doc8
133 - Build system lint target used to syntax check restructuredText sources.
134 * - lint-doc8-all
135 - Filesystem traversal, check all ``*.rst`` sources.
136 * - lint-doc8-mod
137 - Syntax check locally modified files (~git status)
138 * - lint-doc8-src
139 - Syntax check a list of files passed in as an argument.
140 * -
141 -
142 * - lint-doc8-install
143 - Dependency driven installation of the doc8 tool.
144
Joey Armstrong4de98b72023-02-09 14:51:38 -0500145.. code:: bash
146
147 make clean
Joey Armstronga9a16b62023-11-01 14:31:15 -0400148 make lint-doc8 2>&1 | tee log
Joey Armstrong4de98b72023-02-09 14:51:38 -0500149
Joey Armstronga9a16b62023-11-01 14:31:15 -0400150 make lint # supported by repositories that define lint-doc8 as a default target.
Joey Armstrong4de98b72023-02-09 14:51:38 -0500151
Joey Armstronga9a16b62023-11-01 14:31:15 -0400152.. list-table:: Sources
153 :widths: 20, 60
154 :header-rows: 1
Joey Armstrong4de98b72023-02-09 14:51:38 -0500155
Joey Armstronga9a16b62023-11-01 14:31:15 -0400156 * - Source
157 - Description
158 * - `makefiles/lint/doc8/include.mk <http://gerrit.opencord.org/plugins/gitiles/onf-make/+/refs/heads/master/makefiles/lint/doc8/include.mk>`_
159 - Main makefile logic for syntax checking RST sources.
160 * - `makefiles/lint/doc8/install.mk <https://gerrit.opencord.org/plugins/gitiles/onf-make/+/refs/heads/master/makefiles/lint/doc8/install.mk>`_
161 - Dependency logic to install the doc8 tool when needed.
162 * - `makefiles/lint/doc8/excl.mk <https://gerrit.opencord.org/plugins/gitiles/onf-make/+/refs/heads/master/makefiles/lint/doc8/install.mk>`_
163 - Common doc8 exclusion patterns for all repositories.
164
165See Also
166--------
Joey Armstrong4de98b72023-02-09 14:51:38 -0500167
Joey Armstrong1b8fdc32023-12-20 17:22:57 -0500168- lint-doc8-all target dependency will create a `python virtual env <https://wiki.opencord.org>`_
Joey Armstrong4de98b72023-02-09 14:51:38 -0500169
170|
171
172
173python: flake8
Joey Armstronga9a16b62023-11-01 14:31:15 -0400174==============
Joey Armstrong4de98b72023-02-09 14:51:38 -0500175
176Command: `flake8 <https://flake8.pycqa.org/en/latest>`_
177
178.. code:: bash
179
180 make clean
181 make lint 2>&1 | tee log
182 make lint-flake8-all 2>&1 | tee log
183 make lint-flake8-modified 2>&1 | tee log
184
185Sources:
186
Joey Armstrong644fb652023-10-02 13:12:20 -0400187- `makefiles/lint <https://gerrit.opencord.org/plugins/gitiles/onf-make/+/refs/heads/master/makefiles/lint/>`__
Joey Armstrong4de98b72023-02-09 14:51:38 -0500188- makefiles/lint/flake8.mk
189
190Notes:
191
Joey Armstrong1b8fdc32023-12-20 17:22:57 -0500192- lint-flake8-all target dependency will create a `python virtual env <https://wiki.opencord.org>`_
Joey Armstrong4de98b72023-02-09 14:51:38 -0500193
194|
195
Joey Armstronga8bc8e12022-12-04 07:06:59 -0500196Golang
Joey Armstronga9a16b62023-11-01 14:31:15 -0400197======
Joey Armstronga8bc8e12022-12-04 07:06:59 -0500198
199Command:
200
201Sources:
202
Joey Armstrong644fb652023-10-02 13:12:20 -0400203- `makefiles/lint <https://gerrit.opencord.org/plugins/gitiles/onf-make/+/refs/heads/master/makefiles/lint/>`__
Joey Armstronga8bc8e12022-12-04 07:06:59 -0500204
205|
206
Joey Armstrongb544dff2022-12-07 15:12:05 -0500207
Joey Armstronga8bc8e12022-12-04 07:06:59 -0500208JSON
Joey Armstronga9a16b62023-11-01 14:31:15 -0400209====
Joey Armstronga8bc8e12022-12-04 07:06:59 -0500210
Joey Armstrong4de98b72023-02-09 14:51:38 -0500211Command: `json.tool <https://docs.python.org/3/library/json.html>`_
Joey Armstronga8bc8e12022-12-04 07:06:59 -0500212
213.. code:: bash
214
215 make clean
Joey Armstrong4de98b72023-02-09 14:51:38 -0500216 make lint 2>&1 | tee log
217 make lint-json-all 2>&1 | tee log
218 make lint-json-modified 2>&1 | tee log
Joey Armstronga8bc8e12022-12-04 07:06:59 -0500219
220Sources:
221
Joey Armstrong644fb652023-10-02 13:12:20 -0400222- `makefiles/lint <https://gerrit.opencord.org/plugins/gitiles/onf-make/+/refs/heads/master/makefiles/lint/>`__
223- `makefiles/lint/json.mk <https://gerrit.opencord.org/plugins/gitiles/onf-make/+/refs/heads/master/makefiles/lint/json.mk>`_
Joey Armstronga8bc8e12022-12-04 07:06:59 -0500224
225|
226
227
228License / Copyright notice
Joey Armstronga9a16b62023-11-01 14:31:15 -0400229==========================
Joey Armstronga8bc8e12022-12-04 07:06:59 -0500230
231Command:
232
233.. code:: bash
234
235 make clean
236 make lint-license 2>&1 | tee log
237
238Sources:
239
240- `makefiles/lint <https://gerrit.opencord.org/plugins/gitiles/voltha-system-tests/+/refs/heads/master/makefiles/lint>`__
Joey Armstrong8b426fc2023-11-14 16:09:11 -0500241- `makefiles/lint/license.mk <http://gerrit.opencord.org/plugins/gitiles/voltha-system-tests/+/refs/heads/master/makefiles/lint/license/include.mk>`_
Joey Armstronga8bc8e12022-12-04 07:06:59 -0500242
243|
244
245
Joey Armstrong4de98b72023-02-09 14:51:38 -0500246python: pylint
Joey Armstronga9a16b62023-11-01 14:31:15 -0400247==============
Joey Armstronga8bc8e12022-12-04 07:06:59 -0500248
Joey Armstrong8b426fc2023-11-14 16:09:11 -0500249Command: `pylint <http://github.com/pylint-dev/pylint>`_, `pypi.org <https://pypi.org/project/pylint/>`_
Joey Armstronga8bc8e12022-12-04 07:06:59 -0500250
251.. code:: bash
252
253 make clean
Joey Armstrong4de98b72023-02-09 14:51:38 -0500254 make lint 2>&1 | tee log
255 make lint-pylint-all 2>&1 | tee log
256 make lint-pylint-modified 2>&1 | tee log
Joey Armstronga8bc8e12022-12-04 07:06:59 -0500257
258Sources:
259
Joey Armstrong644fb652023-10-02 13:12:20 -0400260- `makefiles/lint <https://gerrit.opencord.org/plugins/gitiles/onf-make/+/refs/heads/master/makefiles/lint/>`__
Joey Armstrong4de98b72023-02-09 14:51:38 -0500261- makefiles/lint/pylint.mk
Joey Armstrong644fb652023-10-02 13:12:20 -0400262- `makefiles/patches/include.mk <https://gerrit.opencord.org/plugins/gitiles/voltha-docs/+/refs/heads/master/makefiles-orig/patches/>`__
Joey Armstronga8bc8e12022-12-04 07:06:59 -0500263
264Notes:
265
Joey Armstrongbd6cc3d2023-01-09 19:52:12 -0500266- pylint the --py3k option is no longer supported by v3.10+
Joey Armstrong1b8fdc32023-12-20 17:22:57 -0500267- lint-pylint-all target dependency will create a `python virtual env <https://wiki.opencord.org>`_
Joey Armstronga8bc8e12022-12-04 07:06:59 -0500268
269|
270
271
Joey Armstronga9a16b62023-11-01 14:31:15 -0400272Shell / Command Line Scripts
273============================
Joey Armstronga8bc8e12022-12-04 07:06:59 -0500274
275Command: `shellcheck <https://github.com/koalaman/shellcheck>`_
276
Joey Armstrong4de98b72023-02-09 14:51:38 -0500277.. code:: bash
278
279 make clean
280 make lint 2>&1 | tee log
281 make lint-shell-all 2>&1 | tee log
282 make lint-shell-modified 2>&1 | tee log
283
Joey Armstronga8bc8e12022-12-04 07:06:59 -0500284Sources:
285
Joey Armstrong644fb652023-10-02 13:12:20 -0400286- `makefiles/lint <https://gerrit.opencord.org/plugins/gitiles/onf-make/+/refs/heads/master/makefiles/lint/>`__
Joey Armstrong8b426fc2023-11-14 16:09:11 -0500287- `makefiles/lint/shell.mk <https://gerrit.opencord.org/plugins/gitiles/onf-make/+/refs/heads/master/makefiles/lint/shell/include.mk>`_
Joey Armstronga8bc8e12022-12-04 07:06:59 -0500288
289|
290
291
292Yaml
Joey Armstronga9a16b62023-11-01 14:31:15 -0400293====
Joey Armstronga8bc8e12022-12-04 07:06:59 -0500294
Joey Armstrong4de98b72023-02-09 14:51:38 -0500295Command: `yamllint <https://yamllint.readthedocs.io/en/stable/>`_
Joey Armstronga8bc8e12022-12-04 07:06:59 -0500296
297.. code:: bash
298
299 make clean
Joey Armstrong4de98b72023-02-09 14:51:38 -0500300 make lint 2>&1 | tee log
301 make lint-yaml-all 2>&1 | tee log
302 make lint--modified 2>&1 | tee log
Joey Armstronga8bc8e12022-12-04 07:06:59 -0500303
304Sources:
305
Joey Armstrong644fb652023-10-02 13:12:20 -0400306- `makefiles/lint <https://gerrit.opencord.org/plugins/gitiles/onf-make/+/refs/heads/master/makefiles/lint/>`__
307- `makefiles/lint/yaml.mk <https://gerrit.opencord.org/plugins/gitiles/onf-make/+/refs/heads/master/makefiles/lint/yaml.mk>`_
Joey Armstronga8bc8e12022-12-04 07:06:59 -0500308
309|
310
Joey Armstronga8bc8e12022-12-04 07:06:59 -0500311
312Bugs
Joey Armstronga9a16b62023-11-01 14:31:15 -0400313====
Joey Armstronga8bc8e12022-12-04 07:06:59 -0500314
Eric Balle0d83ed2025-02-06 13:35:38 -0800315- `jira::VOLTHA <https://lf-broadband.atlassian.net/projects/VOL>`-
Joey Armstronga8bc8e12022-12-04 07:06:59 -0500316- Include repository URL
317- Include gerrit/github changeset if available.
318- A logfile snippet of the error and surrounding context.
319
Joey Armstrongb544dff2022-12-07 15:12:05 -0500320|
321
Joey Armstronga8bc8e12022-12-04 07:06:59 -0500322
323Repositories
Joey Armstronga9a16b62023-11-01 14:31:15 -0400324============
Joey Armstronga8bc8e12022-12-04 07:06:59 -0500325
326- [`master <https://gerrit.opencord.org/plugins/gitiles/bbsim/+/refs/heads/master>`__] `bbsim <https://gerrit.opencord.org/plugins/gitiles/bbsim>`_
327- [`master <https://gerrit.opencord.org/plugins/gitiles/pod-configs/+/refs/heads/master>`__] `pod-configs <https://gerrit.opencord.org/plugins/gitiles/pod-configs>`_
328- [`master <https://gerrit.opencord.org/plugins/gitiles/voltha-docs/+/refs/heads/master>`__] `voltha-docs <https://gerrit.opencord.org/plugins/gitiles/voltha-docs>`_
329- [`master <https://gerrit.opencord.org/plugins/gitiles/voltha-helm-charts/+/refs/heads/master>`__] `voltha-helm-charts <https://gerrit.opencord.org/plugins/gitiles/voltha-helm-charts>`_
Joey Armstrong4de98b72023-02-09 14:51:38 -0500330- [`master <https://gerrit.opencord.org/plugins/gitiles/voltha-docs/+/refs/heads/master>`__] `voltha-docs <https://gerrit.opencord.org/plugins/gitiles/voltha-docs>`_
Joey Armstronga8bc8e12022-12-04 07:06:59 -0500331
Joey Armstrongb544dff2022-12-07 15:12:05 -0500332|
333
Joey Armstronga8bc8e12022-12-04 07:06:59 -0500334
335Notes
Joey Armstronga9a16b62023-11-01 14:31:15 -0400336=====
Joey Armstronga8bc8e12022-12-04 07:06:59 -0500337
Joey Armstronga8bc8e12022-12-04 07:06:59 -0500338- Volume problem reports require cleanup before linting can become a default.
Joey Armstrong4de98b72023-02-09 14:51:38 -0500339
340 - After bulk linting problems for a language source have been cleaned up
341 default linting can be enabled by modifing {project-root}/config.mk.
342
Joey Armstronga8bc8e12022-12-04 07:06:59 -0500343- Lint target support is globally available across repositories, given time
344 it will be. Submit patches as needed or open a jira ticket to request
345 linting support in specific repositories.
346- Makefile refactoring: yes absolutely! Baby steps are needed in the interim...
Joey Armstrongb544dff2022-12-07 15:12:05 -0500347
348|