forked from juspay/purescript-tracker
-
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.
feat: BKN-2991: add logfilter and init nammayatri version
- Loading branch information
1 parent
376de1f
commit 4b2cef9
Showing
18 changed files
with
11,829 additions
and
2,174 deletions.
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 |
---|---|---|
@@ -0,0 +1,33 @@ | ||
{ | ||
"env": { "browser": true, "es2015": true }, | ||
"extends": "eslint:recommended", | ||
"parserOptions": { "ecmaVersion": 2015, "sourceType": "module" }, | ||
"rules": { | ||
"block-scoped-var": "error", | ||
"no-caller": "error", | ||
"no-extra-parens": "off", | ||
"no-extend-native": "error", | ||
"no-loop-func": "error", | ||
"no-new": "error", | ||
"no-return-assign": "error", | ||
"no-sequences": "error", | ||
"no-shadow": "error", | ||
"no-unused-expressions": "error", | ||
"no-undef": "error", | ||
"no-eq-null": "error", | ||
"indent": ["error", 2, { "SwitchCase": 1 }], | ||
"quotes": ["error", "double"], | ||
"strict": ["error", "global"], | ||
"no-unused-vars": "off", | ||
"no-empty": "off", | ||
"radix": "off", | ||
"no-param-reassign": "off", | ||
"eqeqeq": "off", | ||
"no-bitwise": "off", | ||
"consistent-return": "off", | ||
"guard-for-in": "off", | ||
"no-mixed-spaces-and-tabs": "off", | ||
"no-use-before-define": "off", | ||
"no-dupe-keys": "off" | ||
} | ||
} |
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 |
---|---|---|
|
@@ -8,3 +8,4 @@ | |
/.purs* | ||
/.psa* | ||
/Session.vim | ||
.spago |
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,9 @@ | ||
#!/bin/sh | ||
. "$(dirname "$0")/_/husky.sh" | ||
|
||
BRANCH_NAME=$(git branch | grep '*' | sed 's/* //') | ||
|
||
if [[ $BRANCH_NAME != *"no branch"* ]] | ||
then | ||
npx --no -- commitlint --edit "${1}" | ||
fi |
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,12 @@ | ||
#!/bin/bash | ||
|
||
# Adding hooks to prepare commit message. | ||
# This hook triggers Jira input modules. | ||
# Helps in maintaining code compatblity. | ||
|
||
BRANCH_NAME=$(git branch | grep '*' | sed 's/* //') | ||
|
||
if [[ $BRANCH_NAME != *"no branch"* ]] | ||
then | ||
exec < /dev/tty && node_modules/.bin/git-cz --hook || true | ||
fi |
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,10 @@ | ||
{ | ||
"importSort": "source", | ||
"importWrap": "source", | ||
"indent": 2, | ||
"operatorsFile": null, | ||
"ribbon": 1, | ||
"typeArrowPlacement": "first", | ||
"unicode": "never", | ||
"width": null | ||
} |
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
Oops, something went wrong.