-
-
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.
Added information on documentation
- Loading branch information
ADMSK\AVROGAL1
committed
Feb 11, 2021
1 parent
2e3ff7c
commit 70e7d23
Showing
16 changed files
with
591 additions
and
154 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
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,4 @@ | ||
dist/ | ||
lib/ | ||
node_modules/ | ||
coverage/ |
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,47 @@ | ||
{ | ||
"parser": "babel-eslint", | ||
"parserOptions": { | ||
"ecmaVersion": 6, | ||
"ecmaFeatures": { | ||
"experimentalObjectRestSpread": true | ||
}, | ||
"sourceType": "script" | ||
}, | ||
"extends": ["eslint:recommended", "prettier"], | ||
"plugins": ["node", "import", "prettier"], | ||
"env": { | ||
"node": true, | ||
"es6": true | ||
}, | ||
"rules": { | ||
"indent": ["error", 2], | ||
"linebreak-style": ["error", "unix"], | ||
"jsx-quotes": ["error", "prefer-double"], | ||
"quotes": ["error", "single"], | ||
"comma-dangle": ["error", "always-multiline"], | ||
"no-case-declarations": "off", | ||
"eqeqeq": "warn", | ||
"quote-props": ["warn", "consistent-as-needed"], | ||
"keyword-spacing": "error", | ||
"eslint-comments/no-use": "off", | ||
"import/no-namespace": "off", | ||
"no-unused-vars": "off", | ||
"camelcase": "off", | ||
"semi": "off", | ||
"no-console": "off", | ||
"node/no-unsupported-features/node-builtins": "off", | ||
"node/no-unsupported-features/es-syntax": [ | ||
"error", | ||
{ | ||
"version": ">=10.13.0" | ||
} | ||
], | ||
"node/no-unsupported-features/es-builtins": [ | ||
"error", | ||
{ | ||
"version": ">=10.13.0" | ||
} | ||
], | ||
"prettier/prettier": "error" | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
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
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 |
---|---|---|
|
@@ -29,6 +29,7 @@ bin/ | |
tmp/ | ||
build/* | ||
packages/ | ||
coverage/ | ||
target/ | ||
log/ | ||
site/ | ||
|
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,5 @@ | ||
{ | ||
"hooks": { | ||
"pre-commit": "pretty-quick --staged && npm install && git add dist" | ||
"pre-commit": "pretty-quick --staged && lint-staged" | ||
} | ||
} |
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,4 @@ | ||
{ | ||
"*.js": "eslint --fix", | ||
"*.{json,md}": "prettier --write" | ||
} |
Oops, something went wrong.