Adrien Vergé
1f1757ced4
yamllint version 1.2.1
2016-03-25 13:55:19 +01:00
Adrien Vergé
59d5bffbec
Tests: cli: Detect and handle the -d ''
case
2016-03-25 13:46:19 +01:00
Adrien Vergé
53da21934d
Tests: Add many cli.run
test cases
2016-03-25 13:46:19 +01:00
Adrien Vergé
0c36d0175c
cli: Print EnvironmentErrors on stderr
...
Errors such as "no such file or directory" should not be printed on
standard output.
2016-03-25 13:46:19 +01:00
Adrien Vergé
20545febe5
CI: Lint project's *.yaml files as well as *.yml
2016-03-25 13:46:19 +01:00
Adrien Vergé
88ebcbbb93
Tests: Test cli.find_files_recursively
2016-03-25 13:46:19 +01:00
Adrien Vergé
08615ec4f8
Tests: config: Check the non-valid-yaml-config case
2016-03-25 13:46:19 +01:00
Adrien Vergé
29aceb430a
Tests: indentation: Increase coverage
2016-03-25 13:46:19 +01:00
Adrien Vergé
159e29ea6a
Rules: indentation: Remove non-existing case
...
A BlockMappingStartToken should always be followed by a KeyToken, on the
same line.
2016-03-25 13:46:19 +01:00
Adrien Vergé
f9198b7a9b
Rules: indentation: Fix B_SEQ instead of B_ENT
...
For example in this case, the scalar's parent is a B_ENT (only its
grandparent is a B_SEQ):
- >
multi
line
2016-03-25 13:46:19 +01:00
Adrien Vergé
44236077dd
Merge pull request #4 from adrienverge/indentation-imbricated-flows
...
Indentation: imbricated flows
2016-03-25 13:45:05 +01:00
Adrien Vergé
76f47e91ca
Rules: indentation: Handle imbricated flows correctly
...
The following source -- although not loadable by pyyaml -- is valid
YAML:
{{key}}: value
This was processed badly by yamllint. The same for `[[value]]`,
`{{{{{moustaches}}}}}` or:
{[val,
{{key: val,
key2}}]}
This patch corrects it and add corresponding test cases.
Related-to: #3
2016-03-22 14:34:07 +01:00
Adrien Vergé
f98bed1085
Rules: indentation: Do not crash on unexpected token
...
Previously, when the indentation rule blocked on an unexpected token,
the program crashed with something like:
File "/usr/lib/python3/dist-packages/yamllint/rules/indentation.py",
line 434, in check
assert context['stack'][-1].type == KEY
AssertionError
Instead, we prefer report the error as a regular `LintProblem` and
continue processing.
Fixes : #3
2016-03-22 14:34:07 +01:00
Adrien Vergé
a483524b63
Doc: Update installing section
...
Packages are now also available in Debian and Ubuntu.
2016-03-15 10:04:24 +01:00
Adrien Vergé
3a017a5a22
Doc: Update Neovim integration documentation
...
Since it has been merged into Neomake:
https://github.com/benekastah/neomake/commit/45dfc5
https://github.com/benekastah/neomake/pull/289
2016-03-10 08:59:31 +01:00
Adrien Vergé
bab8137e2b
Update .gitignore
2016-03-08 09:48:17 +01:00
Adrien Vergé
41733fc7a5
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
2016-03-07 11:15:04 +01:00
Adrien Vergé
688858e639
Doc: Reference Fedora and Ubuntu packages
2016-03-07 11:05:29 +01:00
Adrien Vergé
dca3a54e63
yamllint version 1.2.0
2016-03-06 17:04:05 +01:00
Adrien Vergé
2dcfbd7e0d
Conf: relaxed: Remove unneeded lines
2016-03-06 17:04:05 +01:00
Adrien Vergé
73d7a608e8
Conf: relaxed: Re-enable hyphens (in warning)
2016-03-06 17:04:05 +01:00
Adrien Vergé
1c0f164fbf
Conf: relaxed: Set indentation's indent-sequences=consistent
2016-03-06 17:01:18 +01:00
Adrien Vergé
46e9108419
Rules: indentation: Add 'consistent' option for 'indent-sequences'
...
Using `indent-sequences: consistent` allows block sequences to be
indented or not to be, as long as it remains the same within the file.
2016-03-06 15:42:16 +01:00
Adrien Vergé
2f9e3cc71b
Conf: relaxed: Set indentation to warning level
2016-03-06 08:26:09 +01:00
Adrien Vergé
b13a03815a
Conf: default: Use spaces: consistent
for indentation
2016-03-06 08:26:09 +01:00
Adrien Vergé
9a7eec34b1
Rules: indentation: Fix spaces: consitent
with broken flows
2016-03-06 08:26:09 +01:00
Adrien Vergé
5b62548ece
Tests: indentation: Use 'spaces: consistent' by default
2016-03-06 08:26:09 +01:00
Adrien Vergé
8fca8a7a33
Config: Allow 'enable' keyword for rules
...
In the same manner as 'disable', 'enable' allows setting a rule on
without worrying about its options.
2016-03-06 08:00:25 +01:00
Adrien Vergé
69ef9a7272
Conf: relaxed: Set max line-length back to 80
...
Because 80 has been the default for years. But keep it as a warning, not
an error.
2016-03-06 07:42:49 +01:00
Adrien Vergé
d8d1d92545
yamllint version 1.1.0
2016-03-04 17:03:38 +01:00
Adrien Vergé
7688567faa
cli: Add the -d
option to provide inline conf
2016-03-04 16:53:26 +01:00
Adrien Vergé
4e188f8801
Conf: Add a new pre-defined conf 'relaxed'
...
It is more tolerant than 'default'.
2016-03-04 16:50:40 +01:00
Adrien Vergé
5693b1dddf
Rules: indentation: Add 'consistent' option for 'spaces'
...
Using `spaces: consistent` allows any number of spaces, as long as it
remains the same within the file.
2016-03-04 16:03:53 +01:00
Adrien Vergé
fa420499c7
Config: Allow types in multiple choices
...
For instance, allow rules with:
CONF = {'choice': (int, 'hardcoded-string'),
'string-or-bool': (str, bool)}
2016-03-04 16:03:46 +01:00
Adrien Vergé
adefe38a0d
yamllint version 1.0.4
2016-03-04 12:48:31 +01:00
Adrien Vergé
7e11082353
Distribution: Restore spec examples in package_data
...
Put `tests/yaml-1.2-spec-examples/*` back in `setup.py`'s `package_data`
because they need to be installed when running `python setup.py build`,
so Debian packaging script `dh_auto_test -O--buildsystem=pybuild`
doesn't fail.
See also commit e6dc67f
.
2016-03-04 12:33:56 +01:00
Adrien Vergé
29c1c60143
Tests: Use absolute path to spec examples
2016-03-04 12:15:26 +01:00
Adrien Vergé
b879e9a98f
Distribution: Add LICENSE and README to manifest
2016-02-26 09:57:06 +01:00
Adrien Vergé
5956b20545
yamllint version 1.0.3
2016-02-25 14:48:13 +01:00
Adrien Vergé
10ad302e2f
Tests: Explicit encoding for spec examples
...
YAML specification examples contain unusual characters, let's explicit
`encoding='utf-8'` to prevent bugs.
2016-02-25 10:44:05 +01:00
Adrien Vergé
73d9322813
linter: Test run on str, unicode, bytes and stream
...
Previously it was not tested, and broke on Python 2 `unicode` inputs.
2016-02-25 10:41:17 +01:00
Adrien Vergé
ca0ebe4583
yamllint version 1.0.2
2016-02-24 21:21:02 +01:00
Adrien Vergé
e6dc67fd0a
Distribution: Add MANIFEST.in
...
`yamllint/conf/*.yml` remains in `setup.py`'s `package_data` because it
needs to be installed when running `pip install .`.
`docs/*` and `tests/yaml-1.2-spec-examples/*` just need to be packaged,
they can go in the manifest.
2016-02-24 21:18:48 +01:00
Adrien Vergé
611a560082
yamllint version 1.0.1
2016-02-19 19:39:52 +01:00
Adrien Vergé
83384fa4cf
Doc: Fix man page redundant description
2016-02-19 19:34:20 +01:00
Adrien Vergé
3ab3784a75
cli: Remove shebang
...
A shebang is present at the beginning of file, it dates from the time
when `yamllint/cli.py` was `bin/yamllint`, i.e. an executable launcher.
Since this is not the case anymore (see `entry_points` section in
`setup.py`), let's remove it.
2016-02-19 19:17:49 +01:00
Adrien Vergé
2f75e92a66
Doc: Add a configuration example in README
2016-02-19 10:37:52 +01:00
Adrien Vergé
64caa95b6a
yamllint version 1.0.0
2016-02-19 10:15:23 +01:00
Adrien Vergé
fff09fa2df
Distribution: Ship example files from spec in sdist
...
Closes : #1
2016-02-19 10:14:59 +01:00
Adrien Vergé
316bee8c98
yamllint version 0.7.2
2016-02-05 11:28:15 +01:00