Page MenuHomePhabricator

D11640.id28291.diff
No OneTemporary

D11640.id28291.diff

diff --git a/.editorconfig b/.editorconfig
--- a/.editorconfig
+++ b/.editorconfig
@@ -6,6 +6,7 @@
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
+max_line_length = 80
[src/parser/__tests__/bundle/*]
trim_trailing_whitespace = false
@@ -19,6 +20,32 @@
trim_trailing_whitespace = false
insert_final_newline = false
+[src/parser/__tests__/**/*.txt]
+max_line_length =
+
+[src/parser/__tests__/diff/*.{git,hg,rcs,svn,u}diff]
+indent_style =
+max_line_length =
+trim_trailing_whitespace = false
+insert_final_newline = false
+
+[src/parser/__tests__/patches/*.{git,hg,rcs,svn,u}patch]
+indent_style =
+max_line_length =
+trim_trailing_whitespace = false
+insert_final_newline = false
+
+[src/repository/parser/__tests__/mercurial/*.txt]
+insert_final_newline = false
+max_line_length =
+trim_trailing_whitespace = false
+
+[src/unit/parser/__tests__/testresults/go.*]
+indent_style =
+
+[src/unit/parser/__tests__/testresults/xunit.*]
+max_line_length =
+
[externals/**]
; Use editor default (possible autodetection).
indent_style =
diff --git a/LICENSE b/LICENSE
--- a/LICENSE
+++ b/LICENSE
@@ -1,4 +1,3 @@
-
Apache License
Version 2.0, January 2004
http://www.apache.org/licenses/
diff --git a/scripts/breakout.py b/scripts/breakout.py
--- a/scripts/breakout.py
+++ b/scripts/breakout.py
@@ -166,7 +166,11 @@
h = height / 10
for x in range(1, width / 7 - 1):
for y in range(1, 7):
- entities.append(Block(x * 7, y * h + x / 2 % 2, 7, h, colors[y - 1]))
+ entities.append(Block(x * 7,
+ y * h + x / 2 % 2,
+ 7,
+ h,
+ colors[y - 1]))
while True:
while select.select([ sys.stdin ], [], [], 0)[0]:
diff --git a/src/unit/parser/__tests__/testresults/xunit.no-tests b/src/unit/parser/__tests__/testresults/xunit.no-tests
--- a/src/unit/parser/__tests__/testresults/xunit.no-tests
+++ b/src/unit/parser/__tests__/testresults/xunit.no-tests
@@ -1 +1 @@
-<?xml version="1.0" encoding="utf-8"?><testsuite name="" errors="0" failures="0" skips="0" tests="0" time="0.001" ></testsuite>
\ No newline at end of file
+<?xml version="1.0" encoding="utf-8"?><testsuite name="" errors="0" failures="0" skips="0" tests="0" time="0.001" ></testsuite>

File Metadata

Mime Type
text/plain
Expires
Fri, Mar 21, 4:21 PM (4 d, 20 h ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7715685
Default Alt Text
D11640.id28291.diff (2 KB)

Event Timeline