Skip to content

Commit 81336c0

Browse files
committed
- fix super linter issues
1 parent 1c0c4ae commit 81336c0

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+68
-50
lines changed

.jscpd.json

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
"threshold": 15,
3+
"reporters": ["console"],
4+
"ignore": [
5+
"**/*.min.js",
6+
"**/node_modules/**",
7+
"**/bin/**",
8+
"**/obj/**",
9+
"**/.git/**"
10+
],
11+
"format": [
12+
"csharp"
13+
],
14+
"minLines": 5,
15+
"minTokens": 100,
16+
"blame": false,
17+
"silent": false
18+
}

src/SourceFlow.Net.EntityFramework/EntityDbContext.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,4 +165,4 @@ protected override void OnModelCreating(ModelBuilder modelBuilder)
165165
}
166166
}
167167
}
168-
}
168+
}

src/SourceFlow.Net.EntityFramework/ViewModelDbContext.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,4 +165,4 @@ protected override void OnModelCreating(ModelBuilder modelBuilder)
165165
}
166166
}
167167
}
168-
}
168+
}

src/SourceFlow/Aggregate/Aggregate.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,4 +53,4 @@ protected Task Send<TCommand>(TCommand command) where TCommand : ICommand
5353
return commandPublisher.Value.Publish(command);
5454
}
5555
}
56-
}
56+
}

src/SourceFlow/Aggregate/ISubscribes.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@ public interface ISubscribes<in TEvent>
1717
/// <returns></returns>
1818
Task On(TEvent @event);
1919
}
20-
}
20+
}

src/SourceFlow/ICommandStore.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,4 @@ public interface ICommandStore
2424
/// <returns>Collection of serialized command data</returns>
2525
Task<IEnumerable<CommandData>> Load(int aggregateId);
2626
}
27-
}
27+
}

src/SourceFlow/ICommandStoreAdapter.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,4 @@ public interface ICommandStoreAdapter
3030
/// <returns></returns>
3131
Task<int> GetNextSequenceNo(int aggregateId);
3232
}
33-
}
33+
}

src/SourceFlow/IEntity.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ public interface IEntity
44
{
55
int Id { get; set; }
66
}
7-
}
7+
}

src/SourceFlow/IEntityStoreAdapter.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,4 @@ public interface IEntityStoreAdapter
2828
/// <returns></returns>
2929
Task Delete<TEntity>(TEntity entity) where TEntity : class, IEntity;
3030
}
31-
}
31+
}

src/SourceFlow/Impl/EntityStoreAdapter.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,4 +66,4 @@ public Task<TEntity> Persist<TEntity>(TEntity entity) where TEntity : class, IEn
6666
return store?.Persist<TEntity>(entity);
6767
}
6868
}
69-
}
69+
}

0 commit comments

Comments
 (0)