Skip to content

Commit 08ca6b9

Browse files
committed
Work around disagreement between lint rules and formatter
1 parent cf6b06b commit 08ca6b9

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

Extension/src/LanguageServer/configurations.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1877,8 +1877,7 @@ export class CppProperties {
18771877
// Check for path-related squiggles.
18781878
const paths: string[] = [];
18791879
let compilerPath: string | undefined;
1880-
for (const pathArray of [currentConfiguration.browse ? currentConfiguration.browse.path : undefined,
1881-
currentConfiguration.includePath, currentConfiguration.macFrameworkPath]) {
1880+
for (const pathArray of [currentConfiguration.browse ? currentConfiguration.browse.path : undefined, currentConfiguration.includePath, currentConfiguration.macFrameworkPath]) {
18821881
if (pathArray) {
18831882
for (const curPath of pathArray) {
18841883
paths.push(`${curPath}`);

0 commit comments

Comments
 (0)