Skip to content

Commit daf53e5

Browse files
authored
Merge pull request #2157 from strictdoc-project/stanislaw/links
Code climate: tasks: dead_links_check: include NOTICE and CONTRIBUTING
2 parents 7c721be + 5564c07 commit daf53e5

File tree

2 files changed

+24
-2
lines changed

2 files changed

+24
-2
lines changed

NOTICE

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,18 +27,19 @@ Third-party libraries and tools used in this project
2727
----------------------------------------------------
2828

2929
- textX, MIT License, https://github.com/textX/textX/blob/master/LICENSE.txt
30-
- Sphinx, The 2-clause BSD License, https://github.com/sphinx-doc/sphinx/blob/master/LICENSE
30+
- Sphinx, The 2-clause BSD License, https://github.com/sphinx-doc/sphinx/blob/master/LICENSE.rst
3131
- Docutils, Public Domain Dedication with exceptions, https://docutils.sourceforge.io/COPYING.html
3232
- reqif, Apache 2 License, https://github.com/strictdoc-project/reqif/blob/main/LICENSE
3333
- lxml, The 3-Clause BSD License, https://github.com/lxml/lxml/blob/master/doc/licenses/BSD.txt
3434
- FastAPI, MIT License, https://github.com/tiangolo/fastapi/blob/master/LICENSE
3535
- Turbo.js, MIT License, https://github.com/hotwired/turbo/blob/main/MIT-LICENSE
3636
- Stimulus.js, MIT License, https://github.com/hotwired/stimulus/blob/main/LICENSE.md
37-
- Jinja, BSD 3-Clause "New" or "Revised" License, https://github.com/pallets/jinja/blob/main/LICENSE.rst
37+
- Jinja, BSD 3-Clause "New" or "Revised" License, https://github.com/pallets/jinja/blob/main/LICENSE.txt
3838
- Pygments, BSD 2-Clause "Simplified" License, https://github.com/pygments/pygments/blob/master/LICENSE
3939
- XlsxWriter, BSD 2-Clause "Simplified" License, https://github.com/jmcnamara/XlsxWriter/blob/main/LICENSE.txt
4040
- xlrd, The 3-Clause BSD License and another license for earlier work, https://github.com/python-excel/xlrd/blob/master/LICENSE
4141
- python-datauri, The Unlicense, https://github.com/fcurella/python-datauri/blob/master/LICENSE
42+
- tree-sitter, MIT License, https://github.com/tree-sitter/tree-sitter/blob/master/LICENSE
4243

4344
Please also visit: https://strictdoc.readthedocs.io/en/latest/latest/docs/strictdoc_30_credits.html.
4445

tasks.py

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -631,6 +631,27 @@ def check_dead_links(context):
631631
python3 tools/link_health.py docs/strictdoc_25_design.sdoc
632632
""",
633633
)
634+
run_invoke_with_tox(
635+
context,
636+
ToxEnvironment.CHECK,
637+
"""
638+
python3 tools/link_health.py CONTRIBUTING.md
639+
""",
640+
)
641+
run_invoke_with_tox(
642+
context,
643+
ToxEnvironment.CHECK,
644+
"""
645+
python3 tools/link_health.py NOTICE
646+
""",
647+
)
648+
run_invoke_with_tox(
649+
context,
650+
ToxEnvironment.CHECK,
651+
"""
652+
python3 tools/link_health.py README.md
653+
""",
654+
)
634655

635656

636657
@task

0 commit comments

Comments
 (0)