Adrien Vergé
4b9ba9e201
docs(truthy): Enhance rule documentation
2016-10-01 10:00:23 +02:00
Peter Ericson
5294ff5552
truthy: Add tests for explicit booleans
...
From @adrienverge
2016-10-01 09:04:37 +02:00
Peter Ericson
1f472bc144
Add rule: truthy, to forbid truthy values that are not quoted
2016-10-01 09:03:59 +02:00
Adrien Vergé
c163135ee5
yamllint version 1.4.1
v1.4.1
2016-09-27 09:46:40 +02:00
Adrien Vergé
f656cf42d2
fix(line-length): Wrap token scanning securely
...
With `allow-non-breakable-inline-mappings` enabled, every long line is
passed through `loader.peek_token()`. Even lines that are not valid
YAML. For this reason, this code must be wrapped in a `try`/`except`
block.
Closes : #21
2016-09-27 09:27:43 +02:00
Adrien Vergé
9b72a2d29a
Merge branch 'adamchainz-readthedocs.io'
2016-09-21 10:47:01 +02:00
Adam Chainz
d7c17c7e7c
Doc: Convert readthedocs links from .org to .io
...
As per [their blog post of the 27th
April](https://blog.readthedocs.com/securing-subdomains/ ) ‘Securing
subdomains’:
> Starting today, Read the Docs will start hosting projects from
> subdomains on the domain readthedocs.io, instead of on
> readthedocs.org. This change addresses some security concerns around
> site cookies while hosting user generated data on the same domain as
> our dashboard.
Test Plan: Manually visited all the links I’ve modified.
2016-09-21 10:36:00 +02:00
Adrien Vergé
60b72daad4
yamllint version 1.4.0
v1.4.0
2016-09-19 13:53:03 +02:00
Adrien Vergé
773bb8a648
Merge pull request #17 from allanlewis/improve-unbreakable
...
line_length: Allow mapping values with long unbreakable lines
2016-09-19 13:51:44 +02:00
Adrien Vergé
d3cd8ba332
line-length: Generalize ...-inline-mappings for corner cases
...
This commit refactors the `allow-non-breakable-inline-mappings` logic to
use YAML tokens and avoid crashes or erroneous reports on cases like:
```yaml
- {a: "http://localhost/very/very/very/very/very/very/long/url "
}
```
```yaml
dict:
{a: long long long long long long long, b: nospace}
```
```yaml
- long_line: http://localhost/very/very/long/url
```
```yaml
long_line: and+some+space+at+the+end <-- extra spaces
```
For reference see:
https://github.com/adrienverge/yamllint/pull/17#issuecomment-247805799
2016-09-19 12:39:52 +01:00
Allan Lewis
e56a7c788c
line_length: Extract inline logic to new config option
...
This commit extracts the inline mappings logic defined in the previous
commit to a separate config option, as suggested by @adrienverge. I'll
squash this into the previous commit if the change is accepted. (I named
the option slightly differently to what was suggested as I think my
proposal reads better without consulting the docs: I'd be happy to
reconsider this.)
2016-09-19 12:39:52 +01:00
Allan Lewis
d017631aff
line_length: Allow mapping values with long unbreakable lines
2016-09-12 16:31:58 +01:00
Adrien Vergé
5b98cd2053
feat(comments): Allow comments with multiple hash chars
...
This change make the `comments` rule accept comments that start with
multiple pound signs, e.g.:
##############################
## This is some documentation
Closes : #12
2016-08-12 11:58:57 +02:00
Adrien Vergé
82dd7dbf16
Merge pull request #16 from adrienverge/coloured_output_on_tty
...
feat(cli): Colour output only on TTY
2016-08-12 11:58:00 +02:00
Adrien Vergé
4533b8ae49
doc(config): Show relaxed conf contents
...
Closes : #15
2016-08-12 11:17:18 +02:00
Adrien Vergé
a2c68fdf9b
feat(cli): Colour output only on TTY
...
When piping yamllint output to a file, "coloured" characters aren't
interpreted and pollute text formatting with glyphs like:
�[4m./global.yaml�[0m
�[2m1439:52�[0m �[31merror�[0m no new line character...
With this commit, stdout is checked: if it's a TTY then output is
coloured, otherwise output is simple text.
Closes : #14
2016-08-12 11:03:41 +02:00
Adrien Vergé
82ed191bc9
yamllint version 1.3.2
v1.3.2
2016-06-28 12:06:58 +02:00
Adrien Vergé
92ff315fb4
Tests: Set proper LC_ALL when decoding UTF-8 is needed
...
Make sure the default localization conditions on the "test system"
support UTF-8 encoding.
2016-06-28 12:06:55 +02:00
Adrien Vergé
f4cebdc054
Tests: Run with LC_ALL=C for uniform tests
...
Use default (C) locale in all tests to make sure the localization
conditions are the same wherever tests are run.
2016-06-28 11:04:50 +02:00
Adrien Vergé
d174f9e3e3
yamllint version 1.3.1
v1.3.1
2016-06-28 10:10:34 +02:00
Adrien Vergé
c8ba8f7e99
linter: Fix UnicodeError when parsing comments
...
And add tests when reading non-ASCII strings and comments (both from
Python strings and from files).
Fixes : #10
2016-06-28 09:58:23 +02:00
Adrien Vergé
63dd8313f8
yamllint version 1.3.0
v1.3.0
2016-06-27 21:54:29 +02:00
Adrien Vergé
7be5867675
linter: Remove dead code
...
There is *always* a `Line` element at the end of file, even if the
newline character (`\n`) is missing.
2016-06-27 21:45:21 +02:00
Adrien Vergé
6061a2c4cc
Rules: common: Remove dead code
2016-06-27 21:37:31 +02:00
Adrien Vergé
09118e417c
Doc: Add license information on README page
2016-06-27 21:32:55 +02:00
Adrien Vergé
71b90ae208
Doc: Add new features in README
2016-06-27 21:32:55 +02:00
Adrien Vergé
8844855353
Doc: Remove old Debian install commands from README
2016-06-27 21:15:55 +02:00
Adrien Vergé
0eb310e102
Allow disabling yamllint checks using comments
...
Implement problem report disabling with comments in YAML source, for
instance:
# The following mapping contains the same key twice,
# but I know what I'm doing:
key: value 1
key: value 2 # yamllint disable-line rule:key-duplicates
or:
# yamllint disable rule:colons
- Lorem : ipsum
dolor : sit amet,
consectetur : adipiscing elit
# yamllint enable rule:colons
Closes : #8
2016-06-27 17:53:23 +02:00
Adrien Vergé
cdd094220c
parser: Add tests for Comment.is_inline()
2016-06-27 17:47:13 +02:00
Adrien Vergé
7a7d98c96a
parser: Iterate over lines + tokens + comments
...
Instead of iterating over lines and tokens (and find comments between
tokens in the comment rules), add a new `Comment` type and set rules
with `type = 'comment'`.
2016-06-27 17:47:13 +02:00
Adrien Vergé
9f99f25db5
linter: Assert that _run() is called with a buffer
2016-06-25 13:50:24 +02:00
Adrien Vergé
8c839a20c2
Config: Detect user config using os.path.expanduser()
...
Instead of `$HOME`, since the former works when `$HOME` is not set.
[1]: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=828033#10
2016-06-24 18:41:45 +02:00
Adrien Vergé
8e6e851c5b
yamllint version 1.2.2
v1.2.2
2016-06-24 08:40:45 +02:00
Adrien Vergé
edd4cca02f
Merge pull request #9 from michelebariani/master
...
Patch allow-non-breakable-words on '-'
2016-06-15 20:06:04 +02:00
Michele Bariani
867970258e
Patch allow-non-breakable-words on '-'
2016-06-15 18:07:42 +02:00
Adrien Vergé
d0cb5998c4
Merge pull request #7 from jwilk/spelling
...
Fix typos
2016-05-13 16:19:58 +02:00
Jakub Wilk
a5c97220e7
Fix typos
2016-05-13 15:47:56 +02:00
Adrien Vergé
598e5e4370
Doc: Fix typo on configuration page intro
2016-04-21 22:39:46 +02:00
Adrien Vergé
03076ee214
Doc: Add a pointer to rules on configuration page intro
2016-04-21 22:37:48 +02:00
Adrien Vergé
eabd349902
Config: Allow a user-global configuration file
...
Instead of just looking for `.yamllint` in the current working
directory, also look for `~/.config/yamllint/config` (using
`$XDG_CONFIG_HOME` or `$HOME`, see [1] and [2] for information).
[1]: https://specifications.freedesktop.org/basedir-spec/basedir-spec-0.6.html
[2]: https://wiki.archlinux.org/index.php/XDG_Base_Directory_support
Closes : #6
2016-04-21 22:24:24 +02:00
Adrien Vergé
1f1757ced4
yamllint version 1.2.1
v1.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