Skip to content

Commit

Permalink
Add new file .shellcheck
Browse files Browse the repository at this point in the history
  • Loading branch information
estebanways committed Dec 13, 2023
1 parent 9ecfe4b commit b37e640
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 1 deletion.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
# Ignore files individually
.shellcheckrc
package.json

# Ignore node directories
Expand Down
23 changes: 23 additions & 0 deletions .shellcheckrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Configuration options

# Set the preferred shell to bash (default is sh)
shell=bash

# Set the maximum line length (default is 80)
#max_line_length=100

# Suggest ${VAR} in place of $VAR
#enable=require-variable-braces

# Enable specific checks (comma-separated)
# To disable a check, prefix it with "no"
#enable=SC1000,noSC2000
disable=SC1090,SC2012

# Ignore specific errors in certain lines
# Example: Ignore SC1000 and SC2000 in lines 5 and 10
#ignore=5,10:SC1000,SC2000

# Set the severity level for specific checks
# Example: Make SC3000 a warning instead of an error
#severity=SC3000:warning

0 comments on commit b37e640

Please sign in to comment.