-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: standardize-linter to avoid lint issue (#62)
* fix: standardize-linter to avoid lint issue * remove eslint-config-standard package * remove eslint-plugin-standard * implement husky * update-script Co-authored-by: Harshith Raj <[email protected]>
- Loading branch information
1 parent
57d83dd
commit e919452
Showing
4 changed files
with
2,888 additions
and
82 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,9 @@ | ||
{ | ||
"extends": ["standard", "plugin:jest/recommended", "plugin:prettier/recommended", "prettier/standard"], | ||
"plugins": ["standard", "jest"], | ||
"parser": "babel-eslint", | ||
"rules": { | ||
"jest/valid-expect": 0, | ||
"max-len": ["warn", { "code": 120 }] | ||
} | ||
} |
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 @@ | ||
printWidth: 120 |
Oops, something went wrong.