Skip to content
This repository was archived by the owner on Oct 8, 2024. It is now read-only.

Commit c1190b1

Browse files
Merge pull request #36 from prusse-martin/fb-python-no-bom
Remove UTF-8 BOM from python files
2 parents d3057eb + 4936be3 commit c1190b1

File tree

3 files changed

+31
-1
lines changed

3 files changed

+31
-1
lines changed

CHANGELOG.rst

+3-1
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,12 @@ History
33
=======
44

55

6-
Unreleased
6+
1.7.0
77
----------
88

99
* Check if .cpp file is non-ascii, ensure it has BOM at the beginning of the file.
10+
* Emmit message when clang-format is not installed (or usable).
11+
* Ensure python files do not include BOM.
1012

1113
1.6.0
1214
------

esss_fix_format/cli.py

+8
Original file line numberDiff line numberDiff line change
@@ -253,6 +253,14 @@ def _process_file(filename, check, format_code):
253253
error_msg = 'Error formatting code: %s' % (e,)
254254
click.secho(error_msg, fg='red')
255255
errors.append(error_msg)
256+
257+
if new_contents and (new_contents[0] == codecs.BOM_UTF8.decode('UTF-8')):
258+
msg = ': ERROR python file should not have a BOM.'
259+
error_msg = click.format_filename(filename) + msg
260+
click.secho(error_msg, fg='red')
261+
errors.append(error_msg)
262+
new_contents = new_contents[1:]
263+
256264
elif is_cpp(filename):
257265
formatter = 'legacy formatter'
258266

tests/test_esss_fix_format.py

+20
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
#!/usr/bin/env python
22
# -*- coding: utf-8 -*-
3+
import codecs
34
import io
45
import os
56
import subprocess
@@ -210,6 +211,25 @@ def test_empty_file(tmpdir, sort_cfg_to_tmpdir):
210211
run([str(filename)], expected_exit=0)
211212

212213

214+
@pytest.mark.parametrize('check', [True, False])
215+
def test_python_with_bom(tmpdir, sort_cfg_to_tmpdir, check):
216+
filename = tmpdir.join('test.py')
217+
original_contents = codecs.BOM_UTF8 + b'import io\r\n'
218+
filename.write(original_contents, 'wb')
219+
220+
args = [str(filename)]
221+
if check:
222+
args = ['--check'] + args
223+
224+
run(args, expected_exit=1)
225+
226+
current_contents = filename.read('rb')
227+
if check:
228+
assert current_contents == original_contents
229+
else:
230+
assert current_contents == original_contents[len(codecs.BOM_UTF8):]
231+
232+
213233
@pytest.mark.parametrize(
214234
'source',
215235
[

0 commit comments

Comments
 (0)