9 Commits
2.4.1 ... 2.5.0

Author SHA1 Message Date
Alex Blanco
921231864f Merge pull request #59 from idealista/develop
Release 2.5.0
2021-02-19 04:55:24 -08:00
Alex Blanco
c7be6405e8 Merge branch 'master' into develop 2021-02-19 04:54:55 -08:00
Alex Blanco
53acbaa7d7 Update CHANGELOG.md 2021-02-19 13:54:28 +01:00
Alex Blanco
055c1ed1a8 Merge pull request #58 from idealista/features/57
#57 gitattributes for yaml detection
2021-02-19 04:51:52 -08:00
Alex Blanco
092a44d4d2 Merge branch 'develop' into features/57 2021-02-19 04:51:23 -08:00
Alex Blanco
e216704e9f Merge pull request #56 from idealista/features/55
#55 exclude non-role files from linting
2021-02-19 04:51:00 -08:00
Alejandro Blanco López
1b9b8e81a2 #57 gitattributes for yaml detection 2021-02-18 12:39:38 +01:00
Alejandro Blanco López
8b089d7fdc follow excluding convention 2021-02-17 18:24:53 +01:00
Alejandro Blanco López
bd4c9ee55d #55 exclude non-role files from linting 2021-02-17 18:22:37 +01:00
4 changed files with 13 additions and 0 deletions

View File

@@ -8,6 +8,13 @@ This project adheres to [Semantic Versioning](http://semver.org/) and [Keep a ch
### Fixed
### Removed
## [2.5.0](https://github.com/idealista/cookiecutter-ansible-role/tree/2.5.0)
### [Full Changelog](https://github.com/idealista/cookiecutter-ansible-role/compare/2.4.1...2.5.0)
### Added
- *[#57](https://github.com/idealista/cookiecutter-ansible-role/issues/57) Added gitattributes file* @blalop
### Changed
- *[#55](https://github.com/idealista/cookiecutter-ansible-role/issues/55) Excluded non-role files from linting* @blalop
## [2.4.1](https://github.com/idealista/cookiecutter-ansible-role/tree/2.4.1)
### [Full Changelog](https://github.com/idealista/cookiecutter-ansible-role/compare/2.4.0...2.4.1)
### Fixed

View File

@@ -1,5 +1,7 @@
exclude_paths:
- ./molecule
- ./.travis.yml
- ./.github
parseable: true
skip_list:
- '204'

View File

@@ -4,6 +4,8 @@ extends: default
ignore: |
molecule/**/tests/
.github
.travis.yml
rules:
braces:

View File

@@ -0,0 +1,2 @@
*.yml linguist-detectable=true
*.yaml linguist-detectable=true