Skip to content

Commit

Permalink
chore(ci-cd): remove extra key from sonarcloud props file and ignore …
Browse files Browse the repository at this point in the history
…lint from test cases

Fix sonar cloud props file issue

gh-0
  • Loading branch information
Samarpan Bhattacharya authored and Samarpan Bhattacharya committed Jan 9, 2024
1 parent 9022d95 commit 2065ab5
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 1 deletion.
1 change: 0 additions & 1 deletion .sonarcloud.properties
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
# Path to sources
sonar.sources=src
sonar.exclusions=src/__tests__/**
sonar.exclusions=src/middleware
#sonar.inclusions=

# Path to tests
Expand Down
1 change: 1 addition & 0 deletions src/__tests__/acceptance/test.controller.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/* eslint-disable @typescript-eslint/naming-convention */
import {get} from '@loopback/rest';
import {ratelimit} from '../..';

Expand Down
1 change: 1 addition & 0 deletions src/__tests__/unit/ratelimit-action.provider.unit.ts
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@ describe('Rate Limit action Service', () => {
RatelimitActionMockProvider = proxyquire(
'../../providers/ratelimit-action.provider',
{
// eslint-disable-next-line @typescript-eslint/naming-convention
'express-rate-limit': mockExpressRatelimit,
},
).RatelimitActionProvider;
Expand Down
1 change: 1 addition & 0 deletions src/release_notes/release-notes.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/* eslint-disable @typescript-eslint/naming-convention */
const releaseNotes = require('git-release-notes');
const simpleGit = require('simple-git/promise');
const path = require('path');
Expand Down

0 comments on commit 2065ab5

Please sign in to comment.