Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for rakish (0.16 sec)

  1. bin/diff_yaml.py

                except yaml.YAMLError as ex:
                    print(ex)
    
            return res
        except KeyError as ke:
            if 'kind' in str(ke) or 'data' in str(ke):
                return res
    
            raise
    
    
    def normalize_ports(res):
        try:
            spec = res["spec"]
            if spec is None:
                return res
            ports = sorted(spec['ports'], key=lambda x: x["port"])
            spec['ports'] = ports
    
    Python
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Wed Mar 03 16:14:57 GMT 2021
    - 4.5K bytes
    - Viewed (0)
  2. common/config/sass-lint.yml

    #########################
    ## Config for sass-lint
    #########################
    # Linter Options
    options:
      # Don't merge default rules
      merge-default-rules: false
      # Raise an error if more than 50 warnings are generated
      max-warnings: 500
    # Rule Configuration
    rules:
      attribute-quotes:
        - 2
        -
          include: false
      bem-depth: 2
      border-zero: 2
      brace-style: 2
      class-name-format: 2
      clean-import-paths: 2
    Others
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Wed Sep 11 23:32:21 GMT 2019
    - 2K bytes
    - Viewed (0)
Back to top