aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-web/src/main/js/api
diff options
context:
space:
mode:
Diffstat (limited to 'server/sonar-web/src/main/js/api')
-rw-r--r--server/sonar-web/src/main/js/api/news.ts1
-rw-r--r--server/sonar-web/src/main/js/api/quality-profiles.ts2
2 files changed, 0 insertions, 3 deletions
diff --git a/server/sonar-web/src/main/js/api/news.ts b/server/sonar-web/src/main/js/api/news.ts
index a262a9e14ea..6e246198027 100644
--- a/server/sonar-web/src/main/js/api/news.ts
+++ b/server/sonar-web/src/main/js/api/news.ts
@@ -17,7 +17,6 @@
* along with this program; if not, write to the Free Software Foundation,
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
-/* eslint-disable camelcase */
import { getCorsJSON } from '../helpers/request';
interface PrismicRef {
diff --git a/server/sonar-web/src/main/js/api/quality-profiles.ts b/server/sonar-web/src/main/js/api/quality-profiles.ts
index 93e0c1d5064..d07a6194341 100644
--- a/server/sonar-web/src/main/js/api/quality-profiles.ts
+++ b/server/sonar-web/src/main/js/api/quality-profiles.ts
@@ -242,7 +242,6 @@ export function removeGroup(parameters: AddRemoveGroupParameters): Promise<void
}
export interface BulkActivateParameters {
- /* eslint-disable camelcase */
activation?: boolean;
active_severities?: string;
asc?: boolean;
@@ -264,7 +263,6 @@ export interface BulkActivateParameters {
targetSeverity?: string;
template_key?: string;
types?: string;
- /* eslint-enable camelcase */
}
export function bulkActivateRules(data: BulkActivateParameters) {