mirror of
https://github.com/nikdoof/dotfiles.git
synced 2026-01-31 11:28:14 +00:00
[shell-common] Add shellcheck lines for all shell files
This commit is contained in:
@@ -1,3 +1,4 @@
|
||||
# shellcheck shell=bash
|
||||
# Override application locations to fix XDG
|
||||
export ANSIBLE_HOME="$XDG_DATA_HOME"/ansible
|
||||
export LESSHISTFILE="$XDG_STATE_HOME"/less/history
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
# shellcheck shell=bash
|
||||
# AWS functions
|
||||
|
||||
# Get the list of AWS profiles
|
||||
function awsprofiles() {
|
||||
|
||||
@@ -1,4 +1,6 @@
|
||||
# shellcheck shell=bash
|
||||
# Go stuff
|
||||
|
||||
export GOPATH=$XDG_DATA_HOME/go/
|
||||
export PATH=${GOPATH}bin:$PATH
|
||||
if [ -z ${GOROOT+x} ] && [ -d /usr/local/go ]; then
|
||||
|
||||
@@ -1,2 +1,4 @@
|
||||
# shellcheck shell=bash
|
||||
# Python stuff
|
||||
|
||||
export POETRY_VIRTUALENVS_IN_PROJECT=true
|
||||
|
||||
@@ -1,4 +1,6 @@
|
||||
# shellcheck shell=bash
|
||||
# Rust stuff
|
||||
|
||||
if [ -f $HOME/.cargo/env ]; then
|
||||
source $HOME/.cargo/env
|
||||
fi
|
||||
|
||||
Reference in New Issue
Block a user