[PR #2708] [CLOSED] feat: added multiple params to analysis_options.yaml #5381

Closed
opened 2026-03-23 22:18:29 +00:00 by mirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/2708
Author: @yatendra2001
Created: 6/5/2023
Status: Closed

Base: developHead: main


📝 Commits (10+)

📊 Changes

413 files changed (+5745 additions, -5079 deletions)

View changed files

📝 .github/workflows/release.yml (+1 -1)
📝 CHANGELOG.md (+27 -0)
📝 README.md (+5 -3)
📝 frontend/Makefile.toml (+1 -1)
📝 frontend/appflowy_flutter/.gitignore (+1 -0)
📝 frontend/appflowy_flutter/analysis_options.yaml (+4 -0)
frontend/appflowy_flutter/assets/images/editor/link.svg (+4 -0)
📝 frontend/appflowy_flutter/assets/translations/en.json (+12 -5)
📝 frontend/appflowy_flutter/integration_test/board_test.dart (+3 -1)
📝 frontend/appflowy_flutter/integration_test/cover_image_test.dart (+2 -2)
📝 frontend/appflowy_flutter/integration_test/empty_document_test.dart (+11 -3)
📝 frontend/appflowy_flutter/integration_test/open_ai_smart_menu_test.dart (+11 -5)
📝 frontend/appflowy_flutter/integration_test/switch_folder_test.dart (+5 -4)
📝 frontend/appflowy_flutter/integration_test/util/base.dart (+14 -14)
📝 frontend/appflowy_flutter/integration_test/util/data.dart (+19 -3)
📝 frontend/appflowy_flutter/integration_test/util/keyboard.dart (+2 -2)
📝 frontend/appflowy_flutter/integration_test/util/mock/mock_file_picker.dart (+2 -2)
📝 frontend/appflowy_flutter/integration_test/util/mock/mock_openai_repository.dart (+10 -10)
📝 frontend/appflowy_flutter/integration_test/util/settings.dart (+2 -2)
📝 frontend/appflowy_flutter/lib/core/folder_notification.dart (+7 -7)

...and 80 more files

📄 Description

Feature Preview

Fixes #2228


PR Checklist

  • My code adheres to the AppFlowy Style Guide
  • I've listed at least one issue that this PR fixes in the description above.
  • I've added a test(s) to validate changes in this PR, or this PR only contains semantic changes.
  • All existing tests are passing.

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/AppFlowy-IO/AppFlowy/pull/2708 **Author:** [@yatendra2001](https://github.com/yatendra2001) **Created:** 6/5/2023 **Status:** ❌ Closed **Base:** `develop` ← **Head:** `main` --- ### 📝 Commits (10+) - [`db8d030`](https://github.com/AppFlowy-IO/AppFlowy/commit/db8d030a85df2fa25e5df39d59ed718786bdae84) feat: show unscheduled events in calendar toolbar (#2411) - [`5d0a349`](https://github.com/AppFlowy-IO/AppFlowy/commit/5d0a3492364b5f3dbefa3bf7b59a4a960ae6b01d) fix: default include time (#2444) - [`a2e9d63`](https://github.com/AppFlowy-IO/AppFlowy/commit/a2e9d63f63d0aebdb354a366983d16c01c7cfd74) chore: bump version 0.1.4 (#2455) - [`06f056a`](https://github.com/AppFlowy-IO/AppFlowy/commit/06f056aa4b19dba0fc9169667b32cb1785afaaa4) chore: Update README.md - [`6731037`](https://github.com/AppFlowy-IO/AppFlowy/commit/6731037a8c77502172c0ad23eda2c51e47befa34) fix: wrong day of week (#2468) - [`4a1714b`](https://github.com/AppFlowy-IO/AppFlowy/commit/4a1714b537983b2cec7a4a1c9f4b6c57a7f19bf1) feat: select which properties to show in calendar (#2482) - [`2b72821`](https://github.com/AppFlowy-IO/AppFlowy/commit/2b7282195b0496fa23d21231ca78a575944d59a2) feat: improve sidebar item dragged appearance (#2471) - [`151ee89`](https://github.com/AppFlowy-IO/AppFlowy/commit/151ee8985598a3467168a1dd458bf3a5a7e163f7) fix: show delete icon for document icon properly (#2475) - [`f0a4b4b`](https://github.com/AppFlowy-IO/AppFlowy/commit/f0a4b4b77d9e88637dd04a4a2377396b825f2b94) feat: add hover effect on an event card (#2487) - [`bd5250a`](https://github.com/AppFlowy-IO/AppFlowy/commit/bd5250ae2f02d18f4ea7d7e0fce867e40ad9ee26) chore: update editor v0.1.12 and format the readme (#2489) ### 📊 Changes **413 files changed** (+5745 additions, -5079 deletions) <details> <summary>View changed files</summary> 📝 `.github/workflows/release.yml` (+1 -1) 📝 `CHANGELOG.md` (+27 -0) 📝 `README.md` (+5 -3) 📝 `frontend/Makefile.toml` (+1 -1) 📝 `frontend/appflowy_flutter/.gitignore` (+1 -0) 📝 `frontend/appflowy_flutter/analysis_options.yaml` (+4 -0) ➕ `frontend/appflowy_flutter/assets/images/editor/link.svg` (+4 -0) 📝 `frontend/appflowy_flutter/assets/translations/en.json` (+12 -5) 📝 `frontend/appflowy_flutter/integration_test/board_test.dart` (+3 -1) 📝 `frontend/appflowy_flutter/integration_test/cover_image_test.dart` (+2 -2) 📝 `frontend/appflowy_flutter/integration_test/empty_document_test.dart` (+11 -3) 📝 `frontend/appflowy_flutter/integration_test/open_ai_smart_menu_test.dart` (+11 -5) 📝 `frontend/appflowy_flutter/integration_test/switch_folder_test.dart` (+5 -4) 📝 `frontend/appflowy_flutter/integration_test/util/base.dart` (+14 -14) 📝 `frontend/appflowy_flutter/integration_test/util/data.dart` (+19 -3) 📝 `frontend/appflowy_flutter/integration_test/util/keyboard.dart` (+2 -2) 📝 `frontend/appflowy_flutter/integration_test/util/mock/mock_file_picker.dart` (+2 -2) 📝 `frontend/appflowy_flutter/integration_test/util/mock/mock_openai_repository.dart` (+10 -10) 📝 `frontend/appflowy_flutter/integration_test/util/settings.dart` (+2 -2) 📝 `frontend/appflowy_flutter/lib/core/folder_notification.dart` (+7 -7) _...and 80 more files_ </details> ### 📄 Description <!--- Thank you for submitting a pull request to AppFlowy. The team will dedicate their best efforts to reviewing and approving your pull request. If you have any questions about the project or feedback for us, please join our [Discord](https://discord.gg/wdjWUXXhtw). --> <!--- If your pull request adds a new feature, please drag and drop a video into this section to showcase what you've done! If not, you may delete this section. --> ### Feature Preview Fixes #2228 --- #### PR Checklist - [x] My code adheres to the [AppFlowy Style Guide](https://appflowy.gitbook.io/docs/essential-documentation/contribute-to-appflowy/software-contributions/submitting-code/style-guides) - [x] I've listed at least one issue that this PR fixes in the description above. - [x] I've added a test(s) to validate changes in this PR, or this PR only contains semantic changes. - [x] All existing tests are passing. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
mirror 2026-03-23 22:18:29 +00:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
AppFlowy-IO/AppFlowy#5381
No description provided.