Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions ignore.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
#include <stdio.h>

int main(void)
{
printf("A wild c file appears!");
return 0;
}
3 changes: 3 additions & 0 deletions tests/test0.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
print("This is tab indentation test")
if True:
print("Test")
3 changes: 3 additions & 0 deletions tests/test1.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
print("This is 4 spaces indentation test")
if True:
print("Test")
3 changes: 3 additions & 0 deletions tests/test2.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
print("This is 8 spaces indentation test")
if True:
print("Test")
9 changes: 9 additions & 0 deletions tests/test3.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Tab
if True:
print("This file")
# 4 spaces
if True:
print("is")
# 8 spaces
if True:
print("intentionally bad")