mirror of https://github.com/grafana/grafana.git
16 lines
451 B
Bash
Executable File
16 lines
451 B
Bash
Executable File
#!/bin/bash
|
|
set -eo pipefail
|
|
|
|
SCRIPT=${1:-revive}
|
|
|
|
$SCRIPT \
|
|
-formatter stylish \
|
|
-config scripts/go/configs/revive-strict.toml \
|
|
-exclude ./pkg/plugins/backendplugin/pluginextensionv2/... \
|
|
./pkg/services/alerting/... \
|
|
./pkg/services/provisioning/datasources/... \
|
|
./pkg/services/provisioning/dashboards/... \
|
|
./pkg/services/provisioning/notifiers/... \
|
|
./pkg/services/provisioning/values/... \
|
|
./pkg/plugins/backendplugin/...
|