noqa all the files to be skipped

Github's super linter seems to call each file individually. So instead of
flake --config foo . it does flake --config foo /path/to/file1.py and this
ignores the exclude values in the config.
This commit is contained in:
Roland Geider
2020-08-09 23:17:32 +02:00
parent f24097efcb
commit 7ebdb0b4f0
44 changed files with 45 additions and 2 deletions

View File

@@ -1,4 +1,5 @@
# -*- coding: iso-8859-15 -*-
# -*- coding: utf-8 -*-
# flake8: noqa
"""
Simple FunkLoad test
"""

View File

@@ -1,4 +1,5 @@
# -*- coding: utf-8 -*-
# flake8: noqa
# This file is part of wger Workout Manager.
#

View File

@@ -33,6 +33,7 @@ def filter_dump(data, model_list, filename):
with open(filename, 'w') as outfile:
json.dump(filter_data, outfile, indent=4)
# This is a full dump of the DB
fixture = open('data.json')
data = json.load(fixture)