1
0
mirror of https://github.com/esphome/esphome.git synced 2025-06-24 17:25:38 +01:00

Lint more filetypes

This commit is contained in:
Otto Winter
2019-05-08 15:26:44 +02:00
parent 3fe9c20188
commit 3372ddc63d
2 changed files with 13 additions and 3 deletions
esphome/components/ledc
script

@ -22,8 +22,18 @@ files = []
for root, _, fs in os.walk('esphome'):
for f in fs:
_, ext = os.path.splitext(f)
if ext in ('.h', '.c', '.cpp', '.tcc', '.py'):
if ext in ('.h', '.c', '.cpp', '.tcc', '.yaml', '.yml', '.ini', '.txt',
'.py', '.html', '.js', '.md'):
files.append(os.path.join(root, f))
ignore = [
'esphome/dashboard/static/materialize.min.js',
'esphome/dashboard/static/ace.js',
'esphome/dashboard/static/mode-yaml.js',
'esphome/dashboard/static/theme-dreamweaver.js',
'esphome/dashboard/static/jquery.validate.min.js',
'esphome/dashboard/static/ext-searchbox.js',
]
files = [f for f in files if f not in ignore]
files.sort()
errors = collections.defaultdict(list)