mirror of
https://github.com/github/codeql.git
synced 2026-05-05 05:35:13 +02:00
Merge pull request #418 from dave-bartolomeo/dave/FormatConfig
Allow mixed whitespace in certain test and external directories
This commit is contained in:
11
cpp/ql/test/format.json
Normal file
11
cpp/ql/test/format.json
Normal file
@@ -0,0 +1,11 @@
|
||||
[
|
||||
{
|
||||
"pattern": [
|
||||
"**/*.c",
|
||||
"**/*.cpp",
|
||||
"**/*.h",
|
||||
"**/*.hpp"
|
||||
],
|
||||
"allowMixedTabsAndSpaces": true
|
||||
}
|
||||
]
|
||||
6
csharp/ql/test/format.json
Normal file
6
csharp/ql/test/format.json
Normal file
@@ -0,0 +1,6 @@
|
||||
[
|
||||
{
|
||||
"pattern": "**/*.cs",
|
||||
"allowMixedTabsAndSpaces": true
|
||||
}
|
||||
]
|
||||
6
java/ql/test/format.json
Normal file
6
java/ql/test/format.json
Normal file
@@ -0,0 +1,6 @@
|
||||
[
|
||||
{
|
||||
"pattern": "**/*.java",
|
||||
"allowMixedTabsAndSpaces": true
|
||||
}
|
||||
]
|
||||
@@ -5,13 +5,13 @@
|
||||
<projects>
|
||||
</projects>
|
||||
<buildSpec>
|
||||
<buildCommand>
|
||||
<name>org.eclipse.jdt.core.javabuilder</name>
|
||||
<arguments>
|
||||
</arguments>
|
||||
</buildCommand>
|
||||
<buildCommand>
|
||||
<name>org.eclipse.jdt.core.javabuilder</name>
|
||||
<arguments>
|
||||
</arguments>
|
||||
</buildCommand>
|
||||
</buildSpec>
|
||||
<natures>
|
||||
<nature>org.eclipse.jdt.core.javanature</nature>
|
||||
<nature>org.eclipse.jdt.core.javanature</nature>
|
||||
</natures>
|
||||
</projectDescription>
|
||||
|
||||
10
javascript/extractor/format.json
Normal file
10
javascript/extractor/format.json
Normal file
@@ -0,0 +1,10 @@
|
||||
[
|
||||
{
|
||||
"pattern": [
|
||||
"lib/**/*",
|
||||
"parser-tests/**/*.js",
|
||||
"tests/**/*.js"
|
||||
],
|
||||
"allowMixedTabsAndSpaces": true
|
||||
}
|
||||
]
|
||||
6
javascript/ql/test/format.json
Normal file
6
javascript/ql/test/format.json
Normal file
@@ -0,0 +1,6 @@
|
||||
[
|
||||
{
|
||||
"pattern": "**/*.js",
|
||||
"allowMixedTabsAndSpaces": true
|
||||
}
|
||||
]
|
||||
Reference in New Issue
Block a user