mirror of
https://github.com/YunoHost/package_linter.git
synced 2024-09-03 20:06:12 +02:00
Merge pull request #13 from YunoHost/clean_comments
[fix] don't take comments into account
This commit is contained in:
commit
dddc15f941
1 changed files with 3 additions and 1 deletions
|
@ -2,6 +2,7 @@
|
||||||
|
|
||||||
import sys
|
import sys
|
||||||
import os
|
import os
|
||||||
|
import re
|
||||||
import json
|
import json
|
||||||
|
|
||||||
|
|
||||||
|
@ -58,7 +59,8 @@ def check_file_exist(file_path):
|
||||||
|
|
||||||
def read_file(file_path):
|
def read_file(file_path):
|
||||||
with open(file_path) as f:
|
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
|
return file
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue