We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 42e608e commit ccb001eCopy full SHA for ccb001e
scripts/analytics/src/libs/modules/git-service/base-git-service.module.ts
@@ -6,7 +6,8 @@ class BaseGITService implements GITService {
6
};
7
8
public getShortLogCommand = (): string => {
9
- return "git shortlog -sne --all --no-merges --group='%cs %cn <%ce>' --since='1 week ago'";
+ // eslint-disable-next-line quotes
10
+ return 'git shortlog -sne --all --no-merges --group="%cs %cn <%ce>" --since="1 week ago"';
11
12
}
13
0 commit comments