forked from rafi16jan/universal-chroot
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9ecfe4b
commit b37e640
Showing
2 changed files
with
23 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
# Ignore files individually | ||
.shellcheckrc | ||
package.json | ||
|
||
# Ignore node directories | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |