Skip to content

Instantly share code, notes, and snippets.

@ryantm
Created January 16, 2019 16:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ryantm/8df134c60070c134c388ecc60cfdcdfd to your computer and use it in GitHub Desktop.
Save ryantm/8df134c60070c134c388ecc60cfdcdfd to your computer and use it in GitHub Desktop.
/nix/store/zq8xkc33sa9jwvrz17l3qaj3v8h777pb-python3.7-yamllint-1.14.0
├── bin
│   └── yamllint
├── lib
│   └── python3.7
│   └── site-packages
│   ├── yamllint
│   │   ├── cli.py
│   │   ├── conf
│   │   │   ├── default.yaml
│   │   │   └── relaxed.yaml
│   │   ├── config.py
│   │   ├── __init__.py
│   │   ├── linter.py
│   │   ├── __main__.py
│   │   ├── parser.py
│   │   ├── __pycache__
│   │   │   ├── cli.cpython-37.pyc
│   │   │   ├── config.cpython-37.pyc
│   │   │   ├── __init__.cpython-37.pyc
│   │   │   ├── linter.cpython-37.pyc
│   │   │   ├── __main__.cpython-37.pyc
│   │   │   └── parser.cpython-37.pyc
│   │   └── rules
│   │   ├── braces.py
│   │   ├── brackets.py
│   │   ├── colons.py
│   │   ├── commas.py
│   │   ├── comments_indentation.py
│   │   ├── comments.py
│   │   ├── common.py
│   │   ├── document_end.py
│   │   ├── document_start.py
│   │   ├── empty_lines.py
│   │   ├── empty_values.py
│   │   ├── hyphens.py
│   │   ├── indentation.py
│   │   ├── __init__.py
│   │   ├── key_duplicates.py
│   │   ├── key_ordering.py
│   │   ├── line_length.py
│   │   ├── new_line_at_end_of_file.py
│   │   ├── new_lines.py
│   │   ├── octal_values.py
│   │   ├── __pycache__
│   │   │   ├── braces.cpython-37.pyc
│   │   │   ├── brackets.cpython-37.pyc
│   │   │   ├── colons.cpython-37.pyc
│   │   │   ├── commas.cpython-37.pyc
│   │   │   ├── comments.cpython-37.pyc
│   │   │   ├── comments_indentation.cpython-37.pyc
│   │   │   ├── common.cpython-37.pyc
│   │   │   ├── document_end.cpython-37.pyc
│   │   │   ├── document_start.cpython-37.pyc
│   │   │   ├── empty_lines.cpython-37.pyc
│   │   │   ├── empty_values.cpython-37.pyc
│   │   │   ├── hyphens.cpython-37.pyc
│   │   │   ├── indentation.cpython-37.pyc
│   │   │   ├── __init__.cpython-37.pyc
│   │   │   ├── key_duplicates.cpython-37.pyc
│   │   │   ├── key_ordering.cpython-37.pyc
│   │   │   ├── line_length.cpython-37.pyc
│   │   │   ├── new_line_at_end_of_file.cpython-37.pyc
│   │   │   ├── new_lines.cpython-37.pyc
│   │   │   ├── octal_values.cpython-37.pyc
│   │   │   ├── quoted_strings.cpython-37.pyc
│   │   │   ├── trailing_spaces.cpython-37.pyc
│   │   │   └── truthy.cpython-37.pyc
│   │   ├── quoted_strings.py
│   │   ├── trailing_spaces.py
│   │   └── truthy.py
│   └── yamllint-1.14.0.dist-info
│   ├── entry_points.txt
│   ├── INSTALLER
│   ├── LICENSE
│   ├── METADATA
│   ├── RECORD
│   ├── top_level.txt
│   └── WHEEL
└── nix-support
└── propagated-build-inputs
11 directories, 69 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment