This repository was archived by the owner on Jul 14, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Перенос в Main #25
Open
intervisionlord
wants to merge
43
commits into
main
Choose a base branch
from
dev
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Перенос в Main #25
Changes from all commits
Commits
Show all changes
43 commits
Select commit
Hold shift + click to select a range
7d28a61
chore(CHANGELOG): Обновлен конфиг cliff
intervisionlord d5fcd98
chore: Обновлен gitignore
intervisionlord e11c068
docs(CHANGELOG): Обновлен changelog по новому формату
intervisionlord 4af2d1a
Создан pylint.yml для workflow github
intervisionlord cfa108d
build(requirements): Понижение версии pydantic для совместимости с CI…
intervisionlord 76af99d
Merge pull request #20 from intervisionlord/dev
intervisionlord 3e8a4d5
build(requirements): Понижение pydantic до 2.11.4
intervisionlord 028ed92
Merge pull request #19 from intervisionlord/chore-workflow-pylint
intervisionlord 18d5c55
docs(README): Обновление readme
intervisionlord 4779d5c
feat(NC): Интеграция с nextcloud
intervisionlord a8ccca6
build(requirements): Добавлен httpx
intervisionlord 8cd4c96
Merge pull request #21 from intervisionlord/feature/nc_auth
intervisionlord 902dcf4
chore(maintenance): В обвязку добавлена очистка локальных веток
intervisionlord 453d3dc
chore(maintenance): Добавлен pre-commit
intervisionlord 9a5afd7
docs(Bot): Докстринги и аннотации
intervisionlord e229481
feat(NC): Вынесение отправки запросов в отдельный хендлер
intervisionlord 194c504
refactor(Bot): Логика запросов через отдельный хендлер
intervisionlord 78ae945
refactor(NC): Сокращен обработчик получения досок (вынесена логика за…
intervisionlord e952603
docs(README): Обновлен readme
intervisionlord 0416a96
docs(CHANGELOG): Обновлен changelog
intervisionlord 775f07d
fix(settings): Актуализирована версия
intervisionlord 7ce0c89
docs(README): Обновлен readme
235d418
feat(NC): Добавлено получение стеков из доски
c8f076d
feat(NC): Добавлена модель для стека
b493998
feat(Bot): Добавлен обработчик команды выбора получения стеков по опр…
42968c3
fix(NC): Исправление endpoint для досок и стеков
intervisionlord 7a8341b
refactor(Bot): Рефкторинг роутов команд бота
intervisionlord 88703c9
docs(README): Обновлен readme
intervisionlord 6157912
chore(maintenance): Обновлен project-tree
intervisionlord 17e410e
docs(CHANGELOG): Обновлен changelog
intervisionlord fd48397
docs(linter): Докстринги и исправления ошибок линтера
intervisionlord e3d04c3
Merge pull request #22 from intervisionlord/feature/deck_show_cards
intervisionlord 747964b
docs(APP): Докстринги для оставшихся файлов
intervisionlord 720bca0
docs(APP): Исправление докстрингов
intervisionlord c034cb4
docs(maintenance): Дописывание докстрингов в служебном скрипте
intervisionlord 7d7982b
feat(Bot): Пересмотр логики. Выборка только из указанного стека
intervisionlord ec02e2a
refactor(Bot): Глобальное изменение логики
intervisionlord f0e07e7
refactor(Bot): Глобальный рефакторинг (итерация 1)
intervisionlord b48cd77
fix(Bot): Работа с несколькими карточками
intervisionlord e2c1090
Merge pull request #23 from intervisionlord/feature/deck_show_cards
intervisionlord e4d3730
refactor(Bot): Замена if .. else на match .. case
intervisionlord 5ecce9b
style(Bot): Полировка кода
intervisionlord cad5b3f
Merge pull request #24 from intervisionlord/refactor/code_polish
intervisionlord File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,23 @@ | ||
| name: Pylint | ||
|
|
||
| on: [push] | ||
|
|
||
| jobs: | ||
| build: | ||
| runs-on: ubuntu-latest | ||
| strategy: | ||
| matrix: | ||
| python-version: ["3.11", "3.12"] | ||
| steps: | ||
| - uses: actions/checkout@v4 | ||
| - name: Set up Python ${{ matrix.python-version }} | ||
| uses: actions/setup-python@v3 | ||
| with: | ||
| python-version: ${{ matrix.python-version }} | ||
| - name: Install dependencies | ||
| run: | | ||
| python -m pip install --upgrade pip | ||
| pip install -r requirements.txt pylint | ||
| - name: Analysing the code with pylint | ||
| run: | | ||
| pylint $(git ls-files '*.py') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -7,4 +7,5 @@ __pycache__/ | |
|
|
||
| .vscode/ | ||
| .ssl/ | ||
| .env | ||
| .env | ||
| cliff.toml.example | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,22 @@ | ||
|
|
||
| repos: | ||
| - repo: https://github.com/pre-commit/pre-commit-hooks | ||
| rev: v4.4.0 | ||
| hooks: | ||
| - id: trailing-whitespace # удаляет пробелы в конце строк | ||
| - id: end-of-file-fixer # добавляет пустую строку в конец файла | ||
| - id: check-yaml # проверяет синтаксис YAML | ||
| - id: check-added-large-files # проверяет большие файлы | ||
| - id: check-merge-conflict # проверяет конфликтные маркеры | ||
|
|
||
| - repo: https://github.com/psf/black | ||
| rev: 23.3.0 | ||
| hooks: | ||
| - id: black | ||
| # форматирует Python код | ||
|
|
||
| # - repo: https://github.com/pycqa/isort | ||
| # rev: 5.12.0 | ||
| # hooks: | ||
| # - id: isort | ||
| # # сортирует импорты в Python |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,10 @@ | ||
| @echo off | ||
| git fetch -p | ||
| echo Branches to delete: | ||
| git branch -vv | findstr ": gone]" | ||
| set /p confirm="Delete these branches? (y/n): " | ||
| if /i "%confirm%"=="y" ( | ||
| for /f "tokens=1" %%i in ('git branch -vv ^| findstr ": gone]"') do git branch -D %%i | ||
| echo Cleanup completed! | ||
| ) | ||
| pause |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
лучше используй
ignore_dirs = ignore_dirs or []