mirror of
https://github.com/discourse/discourse.git
synced 2025-05-21 18:12:32 +08:00
DEV: Update core lint commands to only affect bundled plugins (#29824)
Non-bundled plugins have their own linting configs/commands, and should not be linted by these package.json commands
This commit is contained in:
16
script/list_bundled_plugins
Executable file
16
script/list_bundled_plugins
Executable file
@ -0,0 +1,16 @@
|
||||
#!/bin/bash
|
||||
|
||||
# This script lists all bundled plugins in the Discourse project.
|
||||
# It accepts an optional suffix argument that will be appended to each plugin name.
|
||||
#
|
||||
# Usage:
|
||||
# ./list_bundled_plugins [suffix]
|
||||
#
|
||||
# Arguments:
|
||||
# suffix: An optional string to append to each plugin name.
|
||||
#
|
||||
|
||||
set -e -u -o pipefail
|
||||
|
||||
suffix=${1:-}
|
||||
git ls-tree --name-only -d HEAD plugins/* | sed "s|$|$suffix|"
|
Reference in New Issue
Block a user