mirror of
https://github.com/adrienverge/yamllint.git
synced 2025-02-25 18:55:20 -06:00
Doc: Enhance short description
This commit is contained in:
parent
a1eb9d7d2f
commit
376a6ed484
@ -3,6 +3,9 @@ yamllint
|
||||
|
||||
A linter for YAML files.
|
||||
|
||||
yamllint does not only check for syntax validity, but for common cosmetic
|
||||
conventions such as lines length, trailing spaces, indentation, etc.
|
||||
|
||||
.. image::
|
||||
https://travis-ci.org/adrienverge/yamllint.svg?branch=master
|
||||
:target: https://travis-ci.org/adrienverge/yamllint
|
||||
|
@ -3,6 +3,9 @@ yamllint documentation
|
||||
|
||||
A linter for YAML files.
|
||||
|
||||
yamllint does not only check for syntax validity, but for common cosmetic
|
||||
conventions such as lines length, trailing spaces, indentation, etc.
|
||||
|
||||
Screenshot
|
||||
----------
|
||||
|
||||
|
3
setup.py
3
setup.py
@ -24,7 +24,8 @@ setup(
|
||||
name=APP_NAME,
|
||||
version=APP_VERSION,
|
||||
author=__author__,
|
||||
description=APP_DESCRIPTION,
|
||||
description=APP_DESCRIPTION.split('\n')[0],
|
||||
long_description=APP_DESCRIPTION,
|
||||
license=__license__,
|
||||
keywords=['yaml', 'lint', 'linter', 'syntax', 'checker'],
|
||||
url='https://github.com/adrienverge/yamllint',
|
||||
|
@ -16,7 +16,10 @@
|
||||
|
||||
APP_NAME = 'yamllint'
|
||||
APP_VERSION = '0.5.2'
|
||||
APP_DESCRIPTION = 'A linter for YAML files.'
|
||||
APP_DESCRIPTION = """A linter for YAML files.
|
||||
|
||||
yamllint does not only check for syntax validity, but for common cosmetic
|
||||
conventions such as lines length, trailing spaces, indentation, etc."""
|
||||
|
||||
__author__ = u'Adrien Vergé'
|
||||
__copyright__ = u'Copyright 2016, Adrien Vergé'
|
||||
|
Loading…
Reference in New Issue
Block a user