/* * SonarQube * Copyright (C) 2009-2019 SonarSource SA * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 3 of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program; if not, write to the Free Software Foundation, * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ import * as React from 'react'; import Helmet from 'react-helmet'; import SQPageContainer from './components/SQPageContainer'; import SQStartUsing from './components/SQStartUsing'; import SQTopNav from './components/SQTopNav'; import { isLoggedIn } from '../../../helpers/users'; import { getBaseUrl } from '../../../helpers/urls'; import './style.css'; export default function SonarLintIntegration() { return ( {({ currentUser }) => (

SonarLint integration

SonarCloud can be extended with{' '} SonarLint {' '} to provide developers maximum insight
in their IDEs on code quality and make sure they do not introduce new issues.

  • Get instant feedback

    SonarLint will provide developers with instant feedback in their IDEs as they are writing code, like with a spell checker. SonarLint also shows already existing issues in the code and enables developers to differentiate what issues they introduced.

  • Share quality profiles

    Teams will share the ruleset used to check quality on the project. This means that not only everyone in the team uses the same rules but it also means that if you update this ruleset, everybody will use immediately the updated one.

  • Share configuration

    Project configuration such as exclusions, parameters and false positives get conveyed to the IDE as they get defined, enabling the team get exactly the same view on the project they are working on.

  • Event notification

    Developers will get notified directly in their IDEs when the Quality Gate of their project fails or when they have introduced an issue that has been picked by SonarCloud.

{!isLoggedIn(currentUser) && }
)}
); }