Use '.yaml' extension as default, not '.yml'

As someone said [1] on the internet:

    Say ".yaml" not ".yml".
    This is not MS-DOS, and YML is a Yahoo XML dialect.

Similarly, we use '.json', not '.jsn'.

[1]: https://github.com/ceph/s3-tests/commit/e17c56a
This commit is contained in:
Adrien Vergé
2016-03-07 11:15:04 +01:00
parent 688858e639
commit 41733fc7a5
7 changed files with 8 additions and 8 deletions

View File

@@ -44,7 +44,7 @@ setup(
packages=find_packages(),
entry_points={'console_scripts': ['yamllint=yamllint.cli:run']},
package_data={'yamllint': ['conf/*.yml'],
package_data={'yamllint': ['conf/*.yaml'],
'tests': ['yaml-1.2-spec-examples/*']},
install_requires=['pyyaml'],
tests_require=['nose'],