Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 1 addition & 12 deletions clean_files.txt
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
aliases/
docs/
hooks/
lib/
scripts/

# root files
Expand Down Expand Up @@ -78,18 +79,6 @@ completion/available/vuejs.completion.bash
completion/available/wpscan.completion.bash
completion/available/yarn.completion.bash

# libraries
lib/appearance.bash
lib/colors.bash
lib/command_duration.bash
lib/helpers.bash
lib/history.bash
lib/log.bash
lib/preexec.bash
lib/preview.bash
lib/search.bash
lib/utilities.bash

# plugins
#
plugins/available/alias-completion.plugin.bash
Expand Down
2 changes: 1 addition & 1 deletion lint_clean_files.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ mapfile -t FILES < <(
cat clean_files.txt \
| grep -E -v '^\s*$' \
| grep -E -v '^\s*#' \
| xargs -n1 -I{} find "{}" -type f
| xargs -I{} find "{}" -type f
)

# We clear the BASH_IT variable to help the shellcheck checker
Expand Down