Allow mixed whitespace in C#, C++, and Java test sources

This commit is contained in:
Dave Bartolomeo
2018-11-06 16:00:25 -08:00
parent 55f4839abf
commit a141f4c81a
3 changed files with 23 additions and 0 deletions

11
cpp/ql/test/format.json Normal file
View File

@@ -0,0 +1,11 @@
[
{
"pattern": [
"**/*.c",
"**/*.cpp",
"**/*.h",
"**/*.hpp"
],
"allowMixedTabsAndSpaces": true
}
]

View File

@@ -0,0 +1,6 @@
[
{
"pattern": "**/*.cs",
"allowMixedTabsAndSpaces": true
}
]

6
java/ql/test/format.json Normal file
View File

@@ -0,0 +1,6 @@
[
{
"pattern": "**/*.java",
"allowMixedTabsAndSpaces": true
}
]