Skip to content

Commit 4be2711

Browse files
committed
fix: Update .editorconfig to disable final newline and remove .gitattributes file
1 parent 0abcff5 commit 4be2711

File tree

10 files changed

+9
-22
lines changed

10 files changed

+9
-22
lines changed

.editorconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ root = true
1717
charset = utf-8
1818
indent_style = space
1919
indent_size = 4
20-
insert_final_newline = true
20+
insert_final_newline = false
2121
trim_trailing_whitespace = true
2222

2323
##########################################

.gitattributes

Lines changed: 0 additions & 13 deletions
This file was deleted.

src/QueryBuilder/Extensions/WhereGroupBuilderExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,4 +164,4 @@ public static WhereGroupBuilder<TEntity> WhereNotNull<TEntity, TValue>(
164164
return builder.Where(fieldSelector, ConditionOperator.NotNull);
165165
}
166166
}
167-
}
167+
}

src/QueryBuilder/IQueryBuilder.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@ public interface IQueryBuilder
1212

1313
LinkEntity BuildLinkEntity(ExpandBuilder expand);
1414
}
15-
}
15+
}

src/QueryBuilder/Interfaces/IAttributeNameResolver.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ public interface IAttributeNameResolver
1818
string? GetAttributeName<TEntity, TValue>(Expression<Func<TEntity, TValue>> fieldSelector)
1919
where TEntity : Entity;
2020
}
21-
}
21+
}

src/QueryBuilder/Interfaces/IValueConverter.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ public interface IValueConverter
1313
/// <returns>An array of converted values suitable for Dataverse queries.</returns>
1414
object[] ConvertValues<TValue>(TValue[] values);
1515
}
16-
}
16+
}

src/QueryBuilder/QueryExpressionBuilderExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@ public static IReadOnlyCollection<TEntity> RetrieveAll<TEntity>(this IOrganizati
1414
return result.Entities.Select(e => e.ToEntity<TEntity>()).ToArray();
1515
}
1616
}
17-
}
17+
}

src/QueryBuilder/Services/AttributeNameResolver.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,4 @@ public sealed class AttributeNameResolver : IAttributeNameResolver
2929
};
3030
}
3131
}
32-
}
32+
}

src/QueryBuilder/Services/ValueConverter.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,4 @@ private static object ConvertValue(object value)
3838
};
3939
}
4040
}
41-
}
41+
}

src/QueryBuilder/WhereGroupBuilder.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,4 +69,4 @@ public WhereGroupBuilder<TEntity> Where<TValue>(
6969
/// <returns>True if this group has conditions, false otherwise.</returns>
7070
internal bool HasConditions => conditions.Count > 0;
7171
}
72-
}
72+
}

0 commit comments

Comments
 (0)