diff --git a/.github/workflows/pylint.yml b/.github/workflows/pylint.yml index 354d136..6dce473 100644 --- a/.github/workflows/pylint.yml +++ b/.github/workflows/pylint.yml @@ -31,7 +31,7 @@ jobs: uses: Silleellie/pylint-github-action@v2 with: # The path, relative to the root of the repo, of the package(s) or pyton file(s) to lint - lint-path: danmaku + lint-path: danmaku/**/*.py # Python version which will install all dependencies and lint package(s) python-version: "3.10" # The path, relative to the root of the repo, of the requirements to install diff --git a/docs/mecs.md b/docs/mecs.md index 19eaf0d..be57081 100644 --- a/docs/mecs.md +++ b/docs/mecs.md @@ -362,3 +362,27 @@ graph TB ``` + +## Levels + + + +```mermaid +graph LR + +B([Все враги исчезли]) +C{Остались волны?} +D[Новая волна] +E{Остались уровни?} +F[Следующий уровень] +G[Победа] + +B --> C + +C --> |да| D +C --> |нет| E + +E --> |да| F +E --> |нет| G + +``` \ No newline at end of file