blob: 593e5ae4fbb022c959e292f7dfbd9d2a6778dcf3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
# Copyright (c) 2016, Tsukinowa Inc. <info@tsukinowa.jp>
# Copyright (c) 2018, Ansible Project
import os
from typing import List
from ansiblelint.rules import AnsibleLintRule
class PlaybookExtension(AnsibleLintRule):
id = '205'
shortdesc = 'Use ".yml" or ".yaml" playbook extension'
description = 'Playbooks should have the ".yml" or ".yaml" extension'
severity = 'MEDIUM'
tags = ['formatting']
done = [] # type: List # already noticed path list
version_added = 'v4.0.0'
def match(self, file, text):
if file['type'] != 'playbook':
return False
path = file['path']
ext = os.path.splitext(path)
if ext[1] not in ['.yml', '.yaml'] and path not in self.done:
self.done.append(path)
return True
return False
|