Skip to content

Commit a141f4c

Browse files
Allow mixed whitespace in C#, C++, and Java test sources
1 parent 55f4839 commit a141f4c

File tree

3 files changed

+23
-0
lines changed

3 files changed

+23
-0
lines changed

cpp/ql/test/format.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
[
2+
{
3+
"pattern": [
4+
"**/*.c",
5+
"**/*.cpp",
6+
"**/*.h",
7+
"**/*.hpp"
8+
],
9+
"allowMixedTabsAndSpaces": true
10+
}
11+
]

csharp/ql/test/format.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
[
2+
{
3+
"pattern": "**/*.cs",
4+
"allowMixedTabsAndSpaces": true
5+
}
6+
]

java/ql/test/format.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
[
2+
{
3+
"pattern": "**/*.java",
4+
"allowMixedTabsAndSpaces": true
5+
}
6+
]

0 commit comments

Comments
 (0)