File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11# Directories
2- SRC_PATHS := project_name/ test/ # FIXME
2+ SRC_PATHS := project_name/ test/ # TODO
33
44# Targets
55.PHONY : help
Original file line number Diff line number Diff line change 1- [ // ] : # ( FIXME )
1+ [ // ] : # ( TODO )
22
33# 🐍 Python Project Template 🚀
44
5- [ // ] : # ( FIXME )
5+ [ // ] : # ( TODO )
66![ example workflow] ( https://github.com/ankandrew/python-project-template/actions/workflows/main.yaml/badge.svg )
77
88A modern Python project template to kickstart your next Python project with all the necessary tools and configurations.
@@ -26,7 +26,7 @@ A modern Python project template to kickstart your next Python project with all
2626 ``` bash
2727 pipx install poetry
2828
29- 3. Replace ` FIXME ` comments in files with project/repo specific.
29+ 3. Replace ` TODO ` comments in files with project/repo specific.
3030
3131# ## TODO
3232
Original file line number Diff line number Diff line change 11[tool .poetry ]
2- name = " project-name" # FIXME
2+ name = " project-name" # TODO
33version = " 0.1.0"
4- description = " A short description of your package." # FIXME
4+ description = " A short description of your package." # TODO
55authors = [" ankandrew <61120139+ankandrew@users.noreply.github.com>" ]
66readme = " README.md"
77
@@ -58,6 +58,9 @@ max-line-length = 100
5858[tool .pylint .basic ]
5959no-docstring-rgx = " ^__|^test_"
6060
61+ [tool .pylint .miscellaneous ]
62+ notes = [" FIXME" , " XXX" ]
63+
6164[build-system ]
6265requires = [" poetry-core" ]
6366build-backend = " poetry.core.masonry.api"
Original file line number Diff line number Diff line change 33"""
44
55
6- # FIXME
6+ # TODO
77def test_src () -> None :
88 """Dummy test"""
You can’t perform that action at this time.
0 commit comments