diff options
author | Grégoire Aubert <gregoire.aubert@sonarsource.com> | 2018-10-31 14:26:22 +0100 |
---|---|---|
committer | SonarTech <sonartech@sonarsource.com> | 2018-11-16 20:21:06 +0100 |
commit | 5c0c5c9d4fe217d50a90c297f903a929952cfc97 (patch) | |
tree | 243b2d8b38c6227e8abd08f63927f67de78e3b6d /server/sonar-web/src/main/js/api | |
parent | 2507163633382d56601e825ba2aadafc3edbbe9f (diff) | |
download | sonarqube-5c0c5c9d4fe217d50a90c297f903a929952cfc97.tar.gz sonarqube-5c0c5c9d4fe217d50a90c297f903a929952cfc97.zip |
Remove useless disabling of eslint camelcase rule
Diffstat (limited to 'server/sonar-web/src/main/js/api')
-rw-r--r-- | server/sonar-web/src/main/js/api/news.ts | 1 | ||||
-rw-r--r-- | server/sonar-web/src/main/js/api/quality-profiles.ts | 2 |
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) { |