Kacper Donat
    • Create new note
    • Create a note from template
      • Sharing URL Link copied
      • /edit
      • View mode
        • Edit mode
        • View mode
        • Book mode
        • Slide mode
        Edit mode View mode Book mode Slide mode
      • Customize slides
      • Note Permission
      • Read
        • Only me
        • Signed-in users
        • Everyone
        Only me Signed-in users Everyone
      • Write
        • Only me
        • Signed-in users
        • Everyone
        Only me Signed-in users Everyone
      • Engagement control Commenting, Suggest edit, Emoji Reply
    • Invite by email
      Invitee

      This note has no invitees

    • Publish Note

      Share your work with the world Congratulations! 🎉 Your note is out in the world Publish Note

      Your note will be visible on your profile and discoverable by anyone.
      Your note is now live.
      This note is visible on your profile and discoverable online.
      Everyone on the web can find and read all notes of this public team.
      See published notes
      Unpublish note
      Please check the box to agree to the Community Guidelines.
      View profile
    • Commenting
      Permission
      Disabled Forbidden Owners Signed-in users Everyone
    • Enable
    • Permission
      • Forbidden
      • Owners
      • Signed-in users
      • Everyone
    • Suggest edit
      Permission
      Disabled Forbidden Owners Signed-in users Everyone
    • Enable
    • Permission
      • Forbidden
      • Owners
      • Signed-in users
    • Emoji Reply
    • Enable
    • Versions and GitHub Sync
    • Note settings
    • Note Insights
    • Engagement control
    • Transfer ownership
    • Delete this note
    • Save as template
    • Insert from template
    • Import from
      • Dropbox
      • Google Drive
      • Gist
      • Clipboard
    • Export to
      • Dropbox
      • Google Drive
      • Gist
    • Download
      • Markdown
      • HTML
      • Raw HTML
Menu Note settings Versions and GitHub Sync Note Insights Sharing URL Create Help
Create Create new note Create a note from template
Menu
Options
Engagement control Transfer ownership Delete this note
Import from
Dropbox Google Drive Gist Clipboard
Export to
Dropbox Google Drive Gist
Download
Markdown HTML Raw HTML
Back
Sharing URL Link copied
/edit
View mode
  • Edit mode
  • View mode
  • Book mode
  • Slide mode
Edit mode View mode Book mode Slide mode
Customize slides
Note Permission
Read
Only me
  • Only me
  • Signed-in users
  • Everyone
Only me Signed-in users Everyone
Write
Only me
  • Only me
  • Signed-in users
  • Everyone
Only me Signed-in users Everyone
Engagement control Commenting, Suggest edit, Emoji Reply
  • Invite by email
    Invitee

    This note has no invitees

  • Publish Note

    Share your work with the world Congratulations! 🎉 Your note is out in the world Publish Note

    Your note will be visible on your profile and discoverable by anyone.
    Your note is now live.
    This note is visible on your profile and discoverable online.
    Everyone on the web can find and read all notes of this public team.
    See published notes
    Unpublish note
    Please check the box to agree to the Community Guidelines.
    View profile
    Engagement control
    Commenting
    Permission
    Disabled Forbidden Owners Signed-in users Everyone
    Enable
    Permission
    • Forbidden
    • Owners
    • Signed-in users
    • Everyone
    Suggest edit
    Permission
    Disabled Forbidden Owners Signed-in users Everyone
    Enable
    Permission
    • Forbidden
    • Owners
    • Signed-in users
    Emoji Reply
    Enable
    Import from Dropbox Google Drive Gist Clipboard
       owned this note    owned this note      
    Published Linked with GitHub
    Subscribed
    • Any changes
      Be notified of any changes
    • Mention me
      Be notified of mention me
    • Unsubscribe
    Subscribe
    # FreeCAD - Code Review Book This document aims to provide set of good practices that should be helpful for both developers and code reviewers. They should be treated like food recipies - you can play with them, alter them - but every change should be thoughtful and intentional. :::warning Remember that code review is discussion, don't hasistate to ask for clarification, help etc. Reviewer may be wrong and the goal is to make code to a point where all parties all happy. ::: In this document the **bolded** text will indicate how important each suggestion is. - **must** will be used for fundamental things that should be non-controversial and which you really should follow - **should** will be used for important details that will apply for vast majority of cases, there could however be valid reasons to ignore them depending on context - **could** will be used for best practices, things that you should try to follow but not following them is not an error per se ## Common Rules 1. Consistency **must** be preferred over strict rule following. If, for example, in a given context code uses different naming scheme - follow it instead of one described in that document. 2. The aim of Code Review **is not** to find errors in code but to ensure code quality. 3. Reviewers **should** comment mostly on added code and discuss existing one only if making change to existing code would help the new fragment. 4. Comments **could** be made to existing comments just to note that other (potentially better) soluions are available and should be used instead when writing new code. 5. Reviewer **can** hint to make more changes to existing code in order to improve the propose solution (for example, refactor another class so it can be used) 6. Code **must** follow the Scout Rule - https://biratkirat.medium.com/step-8-the-boy-scout-rule-robert-c-martin-uncle-bob-9ac839778385 - i.e. leave code in better shape than you found it. 7. PRs **must not** contain any remaints of development code, like debug statements other than actual logs. ## Basic Code Rules 1. New code **must** be formatted with clang-format tool or in a way that is compatible with clang-format result if file is excluded from auto formatting. 2. New code **must not** introduce any new linter warnings 3. Main execution path **should** be the least indeted one, i.e. conditions should cover specific cases. 4. Early-Exit **should** be preferred to prune unwanted execution branches fast. 5. ?? Classes that do provide business logic **should** be stateless. This helps with reusability. 6. ?? Functions / Methods **should** be pure i.e. they result should only depend on arguments (and object state in case of method). This helps with reausability, predictability and testing. 7. Global state (global variables, static fields, singletons) **should be** avoided. 8. Coude **should** be written in a way that it expresses intent, not method. Instead of writing loop in place prefer to create helper method that describes what the loop does. :::spoiler More information Consider this code: ```c++ void setOverlayMode(OverlayMode mode) { // ... some code ... QDockWidget *dock = nullptr; for (auto w = qApp->widgetAt(QCursor::pos()); w; w = w->parentWidget()) { dock = qobject_cast<QDockWidget*>(w); if (dock) { break; } auto tabWidget = qobject_cast<OverlayTabWidget*>(w); if (tabWidget) { dock = tabWidget->currentDockWidget(); if (dock) { break; } } } if (!dock) { for (auto w = qApp->focusWidget(); w; w = w->parentWidget()) { dock = qobject_cast<QDockWidget*>(w); if (dock) { break; } } } // some more code ... toggleOverlay(dock, m); } ``` It is hard to understand what is the job of the for loop inside `if (!dock)` statement. We can refactor it to a new `QWidget* findClosestDockWidget()` private method for it to look like this: ```c++ void setOverlayMode(OverlayMode mode) { // ... some code ... QDockWidget *dock = findClosestDockWidget(); // ... some more code ... toggleOverlay(dock, m); } ``` That way reading through code of `setOverlayMode` we don't need to care about the details of finding the closest dock widget. ::: 9. ## Commenting the code 1. Good naming things **must** be preferred over commenting the code. 2. Comments that describe what code does **should** be avoided, instead comments **should** explain intended result. 3. All edge-cases in code **must** be described with comment describing when such edge-case can occour and why it is solved in certain way. 4. All "Hacks" **must** be described with how the hack works, why it is applied and when it no longer will be needed. 5. Commented code **must** be contain additional information on why it was commented out and when it is safe to remove it. ## Naming Things 1. Code symbols (classes, structs, methods, functions, variables...) **must** have names that are meaningful and gramatically correct. 2. Variables **should not** be named using abbreviations and/or 1 letter names. Iterator variables or math related ones like `i` or `u` are obviously not covered by this rule. 3. Names **must not** use the hungarian notation. 4. Classes/Structs **must** be written in `PamelCase`, underscores are allowed but should be avoided. 5. Class members should be written in `camelCase`, underscores are allowed but should be avoided. 6. Global functions should be written in `camelCase`, underscores are allowed but should be avoided. 7.

    Import from clipboard

    Paste your markdown or webpage here...

    Advanced permission required

    Your current role can only read. Ask the system administrator to acquire write and comment permission.

    This team is disabled

    Sorry, this team is disabled. You can't edit this note.

    This note is locked

    Sorry, only owner can edit this note.

    Reach the limit

    Sorry, you've reached the max length this note can be.
    Please reduce the content or divide it to more notes, thank you!

    Import from Gist

    Import from Snippet

    or

    Export to Snippet

    Are you sure?

    Do you really want to delete this note?
    All users will lose their connection.

    Create a note from template

    Create a note from template

    Oops...
    This template has been removed or transferred.
    Upgrade
    All
    • All
    • Team
    No template.

    Create a template

    Upgrade

    Delete template

    Do you really want to delete this template?
    Turn this template into a regular note and keep its content, versions, and comments.

    This page need refresh

    You have an incompatible client version.
    Refresh to update.
    New version available!
    See releases notes here
    Refresh to enjoy new features.
    Your user state has changed.
    Refresh to load new user state.

    Sign in

    Forgot password

    or

    By clicking below, you agree to our terms of service.

    Sign in via Facebook Sign in via Twitter Sign in via GitHub Sign in via Dropbox Sign in with Wallet
    Wallet ( )
    Connect another wallet

    New to HackMD? Sign up

    Help

    • English
    • 中文
    • Français
    • Deutsch
    • 日本語
    • Español
    • Català
    • Ελληνικά
    • Português
    • italiano
    • Türkçe
    • Русский
    • Nederlands
    • hrvatski jezik
    • język polski
    • Українська
    • हिन्दी
    • svenska
    • Esperanto
    • dansk

    Documents

    Help & Tutorial

    How to use Book mode

    Slide Example

    API Docs

    Edit in VSCode

    Install browser extension

    Contacts

    Feedback

    Discord

    Send us email

    Resources

    Releases

    Pricing

    Blog

    Policy

    Terms

    Privacy

    Cheatsheet

    Syntax Example Reference
    # Header Header 基本排版
    - Unordered List
    • Unordered List
    1. Ordered List
    1. Ordered List
    - [ ] Todo List
    • Todo List
    > Blockquote
    Blockquote
    **Bold font** Bold font
    *Italics font* Italics font
    ~~Strikethrough~~ Strikethrough
    19^th^ 19th
    H~2~O H2O
    ++Inserted text++ Inserted text
    ==Marked text== Marked text
    [link text](https:// "title") Link
    ![image alt](https:// "title") Image
    `Code` Code 在筆記中貼入程式碼
    ```javascript
    var i = 0;
    ```
    var i = 0;
    :smile: :smile: Emoji list
    {%youtube youtube_id %} Externals
    $L^aT_eX$ LaTeX
    :::info
    This is a alert area.
    :::

    This is a alert area.

    Versions and GitHub Sync
    Get Full History Access

    • Edit version name
    • Delete

    revision author avatar     named on  

    More Less

    Note content is identical to the latest version.
    Compare
      Choose a version
      No search result
      Version not found
    Sign in to link this note to GitHub
    Learn more
    This note is not linked with GitHub
     

    Feedback

    Submission failed, please try again

    Thanks for your support.

    On a scale of 0-10, how likely is it that you would recommend HackMD to your friends, family or business associates?

    Please give us some advice and help us improve HackMD.

     

    Thanks for your feedback

    Remove version name

    Do you want to remove this version name and description?

    Transfer ownership

    Transfer to
      Warning: is a public team. If you transfer note to this team, everyone on the web can find and read this note.

        Link with GitHub

        Please authorize HackMD on GitHub
        • Please sign in to GitHub and install the HackMD app on your GitHub repo.
        • HackMD links with GitHub through a GitHub App. You can choose which repo to install our App.
        Learn more  Sign in to GitHub

        Push the note to GitHub Push to GitHub Pull a file from GitHub

          Authorize again
         

        Choose which file to push to

        Select repo
        Refresh Authorize more repos
        Select branch
        Select file
        Select branch
        Choose version(s) to push
        • Save a new version and push
        • Choose from existing versions
        Include title and tags
        Available push count

        Pull from GitHub

         
        File from GitHub
        File from HackMD

        GitHub Link Settings

        File linked

        Linked by
        File path
        Last synced branch
        Available push count

        Danger Zone

        Unlink
        You will no longer receive notification when GitHub file changes after unlink.

        Syncing

        Push failed

        Push successfully