Exclude sql files

Hello All

What is the best way for me to exclude sql files from being scanned. We have some stored in our repo on bit bucket.

Here is the current YAML

image: microsoft/dotnet:2.2-sdk # Choose an image matching your project needs

clone:
depth: full # SonarCloud scanner needs the full history to assign issues properly

definitions:

services:
docker:
memory: 2048

caches:
sonar: ~/.sonar/cache # Caching SonarCloud artifacts will speed up your build
steps:
- step: &build-test-sonarcloud
name: Build, test and analyze on SonarCloud
caches:
# - ************************** # See https://confluence.atlassian.com/bitbucket/caching-dependencies-895552876.html
- sonar
script:
# - ************************** # Build your project and run
- pipe: sonarsource/sonarcloud-scan:1.2.1
- step: &check-quality-gate-sonarcloud
name: Check the Quality Gate on SonarCloud
script:
- pipe: sonarsource/sonarcloud-quality-gate:0.1.4

pipelines: # More info here: https://confluence.atlassian.com/bitbucket/configure-bitbucket-pipelines-yml-792298910.html

branches:
master:
- step: *build-test-sonarcloud
- step: *check-quality-gate-sonarcloud
pull-requests:
‘**’:
- step: *build-test-sonarcloud
- step: *check-quality-gate-sonarcloud

IT looks like this is what needs to be added but still working on it

        inputs:
    extraProperties:
      sonar.exclusions = **/*.sql

All set, got it working :slight_smile:

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.