dxania/Send_IT_APIs

View on GitHub

Showing 46 of 46 total issues

Function edit_user has a Cognitive Complexity of 29 (exceeds 5 allowed). Consider refactoring.
Open

    def edit_user(user_name):
        """Modify a particular users details"""
        current_user = get_jwt_identity()
        user_input = request.get_json(force=True)        
        usermail = user_input.get("user_email")
Severity: Minor
Found in app/controllers/user_controller.py - About 4 hrs to fix

Cognitive Complexity

Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

A method's cognitive complexity is based on a few simple rules:

  • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
  • Code is considered more complex for each "break in the linear flow of the code"
  • Code is considered more complex when "flow breaking structures are nested"

Further reading

DatabaseConnection has 26 functions (exceeds 20 allowed). Consider refactoring.
Open

class DatabaseConnection:
    def __init__(self):

#         db = 'd8l5eq5eakmkcm'
        db = 'sendit'
Severity: Minor
Found in app/controllers/db.py - About 3 hrs to fix

    Function change_present_location has a Cognitive Complexity of 17 (exceeds 5 allowed). Consider refactoring.
    Open

        def change_present_location(parcel_id):
            """Change the present location of a parcel delivery order"""
            current_user = get_jwt_identity()
            user_input = request.get_json(force=True) 
            parcel = db.get_a_parcel(parcel_id)
    Severity: Minor
    Found in app/controllers/parcel_controller.py - About 2 hrs to fix

    Cognitive Complexity

    Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

    A method's cognitive complexity is based on a few simple rules:

    • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
    • Code is considered more complex for each "break in the linear flow of the code"
    • Code is considered more complex when "flow breaking structures are nested"

    Further reading

    Function validate_parcel has a Cognitive Complexity of 17 (exceeds 5 allowed). Consider refactoring.
    Open

        def validate_parcel(parcel):
            messages = []
            error_dict = {'message':messages}
    
            variables = ['description', 'recipient_name', 'pickup_location', 'destination', 'recipient_mobile', 'weight']
    Severity: Minor
    Found in app/validator.py - About 2 hrs to fix

    Cognitive Complexity

    Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

    A method's cognitive complexity is based on a few simple rules:

    • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
    • Code is considered more complex for each "break in the linear flow of the code"
    • Code is considered more complex when "flow breaking structures are nested"

    Further reading

    Function validate_status has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
    Open

        def validate_status(parcel, status):
            statuses = ['pending','intransit','cancelled', 'delivered']
          
            if parcel[9] == 'cancelled' or parcel[9] == 'delivered':
                return jsonify({'message':'The parcel was either cancelled or delivered, status can not be changed'}), 400
    Severity: Minor
    Found in app/validator.py - About 1 hr to fix

    Cognitive Complexity

    Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

    A method's cognitive complexity is based on a few simple rules:

    • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
    • Code is considered more complex for each "break in the linear flow of the code"
    • Code is considered more complex when "flow breaking structures are nested"

    Further reading

    Function change_parcel_destination has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
    Open

        def change_parcel_destination(parcel_id):
            """Change the destination of a parcel delivery order"""
            current_user = get_jwt_identity()
            user_input = request.get_json(force=True) 
            parcel = db.get_a_parcel(parcel_id)
    Severity: Minor
    Found in app/controllers/parcel_controller.py - About 1 hr to fix

    Cognitive Complexity

    Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

    A method's cognitive complexity is based on a few simple rules:

    • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
    • Code is considered more complex for each "break in the linear flow of the code"
    • Code is considered more complex when "flow breaking structures are nested"

    Further reading

    Similar blocks of code found in 9 locations. Consider refactoring.
    Open

        def select_no_of_user_parcels_intransit(self, username):
            query = "SELECT COUNT(user_name) FROM parcels WHERE user_name = '{}' and status = 'intransit'".format(username)
            self.cursor.execute(query)
            result = self.cursor.fetchall()
            return result
    Severity: Major
    Found in app/controllers/db.py and 8 other locations - About 1 hr to fix
    app/controllers/db.py on lines 94..98
    app/controllers/db.py on lines 106..110
    app/controllers/db.py on lines 126..130
    app/controllers/db.py on lines 132..136
    app/controllers/db.py on lines 157..161
    app/controllers/db.py on lines 163..167
    app/controllers/db.py on lines 169..173
    app/controllers/db.py on lines 181..185

    Duplicated Code

    Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

    Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

    When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

    Tuning

    This issue has a mass of 43.

    We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

    The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

    If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

    See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

    Refactorings

    Further Reading

    Similar blocks of code found in 9 locations. Consider refactoring.
    Open

        def get_a_parcel(self, parcel_id):
            get_parcel = "SELECT * FROM parcels WHERE parcel_id = '{}'".format(parcel_id)
            self.cursor.execute(get_parcel)
            result = self.cursor.fetchone()
            return result
    Severity: Major
    Found in app/controllers/db.py and 8 other locations - About 1 hr to fix
    app/controllers/db.py on lines 106..110
    app/controllers/db.py on lines 126..130
    app/controllers/db.py on lines 132..136
    app/controllers/db.py on lines 157..161
    app/controllers/db.py on lines 163..167
    app/controllers/db.py on lines 169..173
    app/controllers/db.py on lines 175..179
    app/controllers/db.py on lines 181..185

    Duplicated Code

    Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

    Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

    When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

    Tuning

    This issue has a mass of 43.

    We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

    The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

    If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

    See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

    Refactorings

    Further Reading

    Similar blocks of code found in 9 locations. Consider refactoring.
    Open

        def select_no_of_user_parcels_delivered(self, username):
            query = "SELECT COUNT(user_name) FROM parcels WHERE user_name = '{}' and status = 'delivered'".format(username)
            self.cursor.execute(query)
            result = self.cursor.fetchone()
            return result
    Severity: Major
    Found in app/controllers/db.py and 8 other locations - About 1 hr to fix
    app/controllers/db.py on lines 94..98
    app/controllers/db.py on lines 106..110
    app/controllers/db.py on lines 126..130
    app/controllers/db.py on lines 132..136
    app/controllers/db.py on lines 157..161
    app/controllers/db.py on lines 163..167
    app/controllers/db.py on lines 169..173
    app/controllers/db.py on lines 175..179

    Duplicated Code

    Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

    Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

    When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

    Tuning

    This issue has a mass of 43.

    We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

    The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

    If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

    See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

    Refactorings

    Further Reading

    Similar blocks of code found in 9 locations. Consider refactoring.
    Open

        def get_user_by_id(self, user_id):
            get_user = "SELECT * FROM users WHERE user_id = '{}'".format(user_id)
            self.cursor.execute(get_user)
            result = self.cursor.fetchone()
            return result
    Severity: Major
    Found in app/controllers/db.py and 8 other locations - About 1 hr to fix
    app/controllers/db.py on lines 94..98
    app/controllers/db.py on lines 106..110
    app/controllers/db.py on lines 126..130
    app/controllers/db.py on lines 157..161
    app/controllers/db.py on lines 163..167
    app/controllers/db.py on lines 169..173
    app/controllers/db.py on lines 175..179
    app/controllers/db.py on lines 181..185

    Duplicated Code

    Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

    Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

    When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

    Tuning

    This issue has a mass of 43.

    We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

    The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

    If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

    See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

    Refactorings

    Further Reading

    Similar blocks of code found in 9 locations. Consider refactoring.
    Open

        def get_user(self, user_name):
            get_user = "SELECT * FROM users WHERE user_name = '{}'".format(user_name)
            self.cursor.execute(get_user)
            result = self.cursor.fetchone()
            return result
    Severity: Major
    Found in app/controllers/db.py and 8 other locations - About 1 hr to fix
    app/controllers/db.py on lines 94..98
    app/controllers/db.py on lines 106..110
    app/controllers/db.py on lines 132..136
    app/controllers/db.py on lines 157..161
    app/controllers/db.py on lines 163..167
    app/controllers/db.py on lines 169..173
    app/controllers/db.py on lines 175..179
    app/controllers/db.py on lines 181..185

    Duplicated Code

    Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

    Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

    When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

    Tuning

    This issue has a mass of 43.

    We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

    The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

    If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

    See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

    Refactorings

    Further Reading

    Similar blocks of code found in 9 locations. Consider refactoring.
    Open

        def get_parcels_by_user(self, user_id):
            get_user_parcels = "SELECT * FROM parcels WHERE user_id = '{}' ORDER BY parcel_id ASC".format(user_id)
            self.cursor.execute(get_user_parcels)
            result = self.cursor.fetchall()
            return result
    Severity: Major
    Found in app/controllers/db.py and 8 other locations - About 1 hr to fix
    app/controllers/db.py on lines 94..98
    app/controllers/db.py on lines 126..130
    app/controllers/db.py on lines 132..136
    app/controllers/db.py on lines 157..161
    app/controllers/db.py on lines 163..167
    app/controllers/db.py on lines 169..173
    app/controllers/db.py on lines 175..179
    app/controllers/db.py on lines 181..185

    Duplicated Code

    Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

    Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

    When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

    Tuning

    This issue has a mass of 43.

    We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

    The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

    If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

    See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

    Refactorings

    Further Reading

    Similar blocks of code found in 9 locations. Consider refactoring.
    Open

        def select_no_of_user_parcels_cancelled(self, username):
            query = "SELECT COUNT(user_name) FROM parcels WHERE user_name = '{}' and status = 'cancelled'".format(username)
            self.cursor.execute(query)
            result = self.cursor.fetchone()
            return result
    Severity: Major
    Found in app/controllers/db.py and 8 other locations - About 1 hr to fix
    app/controllers/db.py on lines 94..98
    app/controllers/db.py on lines 106..110
    app/controllers/db.py on lines 126..130
    app/controllers/db.py on lines 132..136
    app/controllers/db.py on lines 157..161
    app/controllers/db.py on lines 169..173
    app/controllers/db.py on lines 175..179
    app/controllers/db.py on lines 181..185

    Duplicated Code

    Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

    Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

    When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

    Tuning

    This issue has a mass of 43.

    We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

    The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

    If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

    See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

    Refactorings

    Further Reading

    Similar blocks of code found in 9 locations. Consider refactoring.
    Open

        def select_no_of_user_parcels(self, username):
            query = "SELECT COUNT(user_name) FROM parcels WHERE user_name = '{}'".format(username)
            self.cursor.execute(query)
            result = self.cursor.fetchone()
            return result
    Severity: Major
    Found in app/controllers/db.py and 8 other locations - About 1 hr to fix
    app/controllers/db.py on lines 94..98
    app/controllers/db.py on lines 106..110
    app/controllers/db.py on lines 126..130
    app/controllers/db.py on lines 132..136
    app/controllers/db.py on lines 163..167
    app/controllers/db.py on lines 169..173
    app/controllers/db.py on lines 175..179
    app/controllers/db.py on lines 181..185

    Duplicated Code

    Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

    Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

    When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

    Tuning

    This issue has a mass of 43.

    We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

    The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

    If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

    See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

    Refactorings

    Further Reading

    Similar blocks of code found in 9 locations. Consider refactoring.
    Open

        def select_no_of_user_parcels_pending(self, username):
            query = "SELECT COUNT(user_name) FROM parcels WHERE user_name = '{}' and status = 'pending'".format(username)
            self.cursor.execute(query)
            result = self.cursor.fetchone()
            return result
    Severity: Major
    Found in app/controllers/db.py and 8 other locations - About 1 hr to fix
    app/controllers/db.py on lines 94..98
    app/controllers/db.py on lines 106..110
    app/controllers/db.py on lines 126..130
    app/controllers/db.py on lines 132..136
    app/controllers/db.py on lines 157..161
    app/controllers/db.py on lines 163..167
    app/controllers/db.py on lines 175..179
    app/controllers/db.py on lines 181..185

    Duplicated Code

    Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

    Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

    When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

    Tuning

    This issue has a mass of 43.

    We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

    The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

    If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

    See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

    Refactorings

    Further Reading

    Function add_parcel has 9 arguments (exceeds 4 allowed). Consider refactoring.
    Open

        def add_parcel(self, description, user_id, user_name, recipient_name, recipient_mobile, pickup_location, destination, weight, total_price):
    Severity: Major
    Found in app/controllers/db.py - About 1 hr to fix

      Function validate_user_credentials has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
      Open

          def validate_user_credentials(user_name, user_email, user_password, user_mobile):
              
              if not user_email:
                  return jsonify({'message':"Email required"}), 400
              if not user_password:
      Severity: Minor
      Found in app/validator.py - About 1 hr to fix

      Cognitive Complexity

      Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

      A method's cognitive complexity is based on a few simple rules:

      • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
      • Code is considered more complex for each "break in the linear flow of the code"
      • Code is considered more complex when "flow breaking structures are nested"

      Further reading

      Function sign_up has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
      Open

          def sign_up():
              """Register a user"""
              # db = DatabaseConnection()
              user_input = request.get_json(force=True) 
              user_name = user_input.get("user_name")          
      Severity: Minor
      Found in app/controllers/user_controller.py - About 1 hr to fix

      Cognitive Complexity

      Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

      A method's cognitive complexity is based on a few simple rules:

      • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
      • Code is considered more complex for each "break in the linear flow of the code"
      • Code is considered more complex when "flow breaking structures are nested"

      Further reading

      Function get_delivery_price has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
      Open

          def get_delivery_price(weight):
              """Get total delivery price based on weight of a parcel"""
              if isinstance(weight, int):
                  # if weight<500:
                  #     delivery_price = 10000
      Severity: Minor
      Found in app/models/parcel_model.py - About 55 mins to fix

      Cognitive Complexity

      Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

      A method's cognitive complexity is based on a few simple rules:

      • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
      • Code is considered more complex for each "break in the linear flow of the code"
      • Code is considered more complex when "flow breaking structures are nested"

      Further reading

      Similar blocks of code found in 2 locations. Consider refactoring.
      Open

          def get_users(self):
              get_users = "SELECT * FROM users ORDER BY user_id ASC"
              self.cursor.execute(get_users)
              result = self.cursor.fetchall()
              return result
      Severity: Minor
      Found in app/controllers/db.py and 1 other location - About 50 mins to fix
      app/controllers/db.py on lines 88..92

      Duplicated Code

      Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

      Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

      When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

      Tuning

      This issue has a mass of 36.

      We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

      The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

      If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

      See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

      Refactorings

      Further Reading

      Severity
      Category
      Status
      Source
      Language