Merge branch 'master' of github.com:/YunoHost/package_linter

This commit is contained in:
Moul 2017-01-27 22:01:15 +01:00
commit 9f30350c99

View file

@ -2,6 +2,7 @@
import sys
import os
import re
import json
@ -58,7 +59,8 @@ def check_file_exist(file_path):
def read_file(file_path):
with open(file_path) as f:
file = f.read().splitlines()
# remove every comments from the file content to avoid false positives
file = re.sub("#.*[^\n]", "", f.read()).splitlines()
return file