mirror of
https://github.com/grafana/grafana.git
synced 2024-12-28 01:41:24 -06:00
16 lines
451 B
Plaintext
16 lines
451 B
Plaintext
|
#!/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/...
|