-
-
Notifications
You must be signed in to change notification settings - Fork 5
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
Showing
33 changed files
with
12,575 additions
and
946 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,27 @@ | ||
{ | ||
"projectName": "json-token-replace", | ||
"projectOwner": "ptkdev", | ||
"repoType": "github", | ||
"repoHost": "https://github.com", | ||
"files": [ | ||
"README.md" | ||
], | ||
"imageSize": 100, | ||
"commit": true, | ||
"contributors": [ | ||
{ | ||
"login": "ptkdev", | ||
"name": "Patryk Rzucidło", | ||
"avatar_url": "https://avatars1.githubusercontent.com/u/442844?v=4", | ||
"profile": "https://ptk.dev", | ||
"contributions": [ | ||
"code", | ||
"translation", | ||
"doc", | ||
"bug" | ||
] | ||
} | ||
], | ||
"contributorsPerLine": 6, | ||
"commitConvention": "none" | ||
} |
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,15 @@ | ||
# EditorConfig is awesome: https://EditorConfig.org | ||
|
||
root = true | ||
|
||
[*] | ||
charset = utf-8 | ||
end_of_line = lf | ||
insert_final_newline = false | ||
trim_trailing_whitespace = true | ||
indent_style = tab | ||
indent_size = 4 | ||
|
||
[*.py] | ||
indent_style = space | ||
indent_size = 4 |
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,46 +1,65 @@ | ||
{ | ||
"env": | ||
{ | ||
"browser": true, | ||
"es6": true, | ||
"node": true | ||
}, | ||
"extends": "eslint:recommended", | ||
"parserOptions": | ||
{ | ||
"sourceType": "module", | ||
"ecmaVersion": 2017 | ||
}, | ||
"plugins": [ | ||
"snakecasejs" | ||
], | ||
"rules": | ||
{ | ||
"indent": [ | ||
"error", | ||
4, | ||
{ | ||
"SwitchCase": 1 | ||
} | ||
], | ||
"linebreak-style": [ | ||
"error", | ||
"unix" | ||
], | ||
"quotes": [ | ||
"error", | ||
"double" | ||
], | ||
"semi": [ | ||
"error", | ||
"always" | ||
], | ||
"no-console": [ | ||
"warn" | ||
], | ||
"no-constant-condition": [ | ||
"warn" | ||
], | ||
"snakecasejs/snakecasejs": "warn" | ||
} | ||
"env": { | ||
"browser": true, | ||
"es6": true, | ||
"node": true, | ||
"jest/globals": true | ||
}, | ||
"extends": "eslint:recommended", | ||
"parserOptions": { | ||
"sourceType": "module", | ||
"ecmaVersion": 2019 | ||
}, | ||
"plugins": [ | ||
"jsdoc", | ||
"jest" | ||
], | ||
"settings": { | ||
"jsdoc": { | ||
"tagNamePreference": { | ||
"returns": "return" | ||
} | ||
} | ||
}, | ||
"rules": { | ||
"no-multi-spaces": ["error", { "ignoreEOLComments": true, "exceptions": { "VariableDeclarator": true } }], | ||
"block-spacing": ["error", "always"], | ||
"array-bracket-spacing": ["error", "never"], | ||
"space-in-parens": ["error", "never"], | ||
"comma-spacing": ["error", { "before": false, "after": true }], | ||
"key-spacing": ["error", { "afterColon": true, "beforeColon": false }], | ||
"indent": ["error", "tab", { "SwitchCase": 1 }], | ||
"quotes": ["error","double", { "avoidEscape": true, "allowTemplateLiterals": true}], | ||
"semi": ["error", "always"], | ||
"no-console": ["warn"], | ||
"no-constant-condition": ["warn"], | ||
"curly": ["error", "all"], | ||
"brace-style": ["error", "1tbs", { "allowSingleLine": false }], | ||
"keyword-spacing": ["error", { "before": true, "after": true }], | ||
"object-curly-spacing": ["error", "never"], | ||
"no-mixed-spaces-and-tabs": ["error", "smart-tabs"], | ||
"spaced-comment": [2, "always"], | ||
"space-before-blocks": ["error", "always"], | ||
"space-before-function-paren": ["error", "never"], | ||
"prefer-template": "error", | ||
"no-useless-concat": "error", | ||
"prefer-arrow-callback": ["error", { "allowNamedFunctions": true }], | ||
"linebreak-style": ["error", "unix"], | ||
"template-curly-spacing": ["error", "never"], | ||
"no-multiple-empty-lines": ["error", { "max": 1, "maxEOF": 0 }], | ||
"jest/no-disabled-tests": "warn", | ||
"jest/no-focused-tests": "error", | ||
"jest/no-identical-title": "error", | ||
"jest/prefer-to-have-length": "warn", | ||
"jest/valid-expect": "error", | ||
"jsdoc/require-param": 1, | ||
"jsdoc/require-param-description": 1, | ||
"jsdoc/require-param-name": 1, | ||
"jsdoc/require-param-type": 1, | ||
"jsdoc/require-returns": 1, | ||
"jsdoc/require-returns-description": 1, | ||
"jsdoc/require-returns-type": 1, | ||
"jsdoc/require-returns-check": 1, | ||
"jsdoc/require-hyphen-before-param-description": 1 | ||
} | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,145 @@ | ||
## AUTO-DETECT | ||
* text=auto | ||
|
||
## SOURCE CODE | ||
*.bat text eol=crlf | ||
*.css text eol=lf | ||
*.html text diff=html eol=lf | ||
*.ini text eol=crlf | ||
*.js text eol=lf | ||
*.json text eol=lf | ||
*.php text diff=php eol=lf | ||
*.py text diff=python eol=lf | ||
*.rb text diff=ruby | ||
*.sass text eol=lf | ||
*.scss text eol=lf | ||
*.sh text eol=lf | ||
*.sql text eol=lf | ||
*.ts text eol=lf | ||
*.vue text eol=lf | ||
*.xml text eol=lf | ||
*.xhtml text diff=html eol=lf | ||
|
||
## DOCKER | ||
*.dockerignore text eol=lf | ||
Dockerfile text eol=lf | ||
|
||
## DOCUMENTATION | ||
*.md text eol=lf | ||
*.txt text eol=lf | ||
AUTHORS text eol=lf | ||
CHANGELOG text eol=lf | ||
CHANGES text eol=lf | ||
CONTRIBUTING text eol=lf | ||
COPYING text eol=lf | ||
INSTALL text eol=lf | ||
license text eol=lf | ||
LICENSE text eol=lf | ||
NEWS text eol=lf | ||
README text eol=lf | ||
TODO text eol=lf | ||
|
||
## TEMPLATES | ||
*.dot text eol=lf | ||
*.tpl text eol=lf | ||
*.twig text eol=lf | ||
|
||
## LINTERS | ||
.csslintrc text eol=lf | ||
.eslintrc text eol=lf | ||
.htmlhintrc text eol=lf | ||
.jscsrc text eol=lf | ||
.jshintrc text eol=lf | ||
.jshintignore text eol=lf | ||
.stylelintrc text eol=lf | ||
.npmignore text eol=lf | ||
|
||
## CONFIGS | ||
*.bowerrc text eol=lf | ||
*.cnf text eol=lf | ||
*.conf text eol=lf | ||
*.config text eol=lf | ||
.babelrc text eol=lf | ||
.browserslistrc text eol=lf | ||
.editorconfig text eol=lf | ||
.env text eol=lf | ||
.gitattributes text eol=lf | ||
.gitconfig text eol=lf | ||
.htaccess text eol=lf | ||
*.lock text eol=lf | ||
*.npmignore text eol=lf | ||
*.yaml text eol=lf | ||
*.yml text eol=lf | ||
browserslist text eol=lf | ||
Makefile text eol=lf | ||
makefile text eol=lf | ||
|
||
## GRAPHICS | ||
*.ai binary | ||
*.bmp binary | ||
*.eps binary | ||
*.gif binary | ||
*.ico binary | ||
*.jng binary | ||
*.jp2 binary | ||
*.jpg binary | ||
*.jpeg binary | ||
*.jpx binary | ||
*.jxr binary | ||
*.pdf binary | ||
*.png binary | ||
*.psb binary | ||
*.psd binary | ||
*.svg text | ||
*.svgz binary | ||
*.tif binary | ||
*.tiff binary | ||
*.wbmp binary | ||
*.webp binary | ||
|
||
## AUDIO | ||
*.kar binary | ||
*.m4a binary | ||
*.mid binary | ||
*.midi binary | ||
*.mp3 binary | ||
*.ogg binary | ||
*.ra binary | ||
|
||
## VIDEO | ||
*.3gpp binary | ||
*.3gp binary | ||
*.as binary | ||
*.asf binary | ||
*.asx binary | ||
*.fla binary | ||
*.flv binary | ||
*.m4v binary | ||
*.mng binary | ||
*.mov binary | ||
*.mp4 binary | ||
*.mpeg binary | ||
*.mpg binary | ||
*.ogv binary | ||
*.swc binary | ||
*.swf binary | ||
*.webm binary | ||
|
||
## ARCHIVES | ||
*.7z binary | ||
*.gz binary | ||
*.jar binary | ||
*.rar binary | ||
*.tar binary | ||
*.zip binary | ||
|
||
## FONTS | ||
*.ttf binary | ||
*.eot binary | ||
*.otf binary | ||
*.woff binary | ||
*.woff2 binary | ||
|
||
## EXECUTABLES | ||
*.exe binary | ||
*.pyc binary |
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,37 @@ | ||
--- | ||
name: 🐛 Bug report | ||
about: Create a report to help us improve | ||
--- | ||
|
||
<!-- Please search existing issues to avoid creating duplicates, remember before the title text add tag: [Bug report] --> | ||
|
||
### Versions | ||
|
||
<!-- Replace or update the values below with your own: --> | ||
|
||
- **JTR Version:** v1.0.0 | ||
- **Node Version:** v13.0.0 | ||
- **Operating System:** Windows 10 | ||
- **Terminal:** Windows Powershell | ||
|
||
### Expected Behavior | ||
|
||
<!-- Please describe below this line the program's expected behavior. --> | ||
|
||
### Actual Behavior | ||
|
||
<!-- Please describe below this line the program's actual behavior. Please include any stack traces | ||
or log output in the back ticks below. --> | ||
|
||
### Steps to Reproduce | ||
|
||
<!-- Please describe below this line the steps for reproduce this issue, are numbered below. Include as | ||
much detail as possible. --> | ||
|
||
1. ... | ||
2. ... | ||
3. ... | ||
|
||
### Screenshots (Optional) | ||
|
||
<!-- If the error is graphical in nature it is helpful to provide a screenshot below this line. --> |
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,14 @@ | ||
--- | ||
name: 💫 Feature request | ||
about: Suggest an idea for this project | ||
--- | ||
|
||
<!-- Please search existing issues to avoid creating duplicates, remember before the title text add tag: [Feature request] --> | ||
|
||
### Feature description | ||
|
||
<!-- Describe below this line the feature you'd like --> | ||
|
||
### Feature motivation | ||
|
||
<!-- Why do you want this? Write motivation below this line --> |
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 @@ | ||
--- | ||
name: 🗨 Question | ||
about: Ask a question | ||
--- | ||
|
||
<!-- Please search existing issues to avoid creating duplicates, remember before the title text add tag: [Q] --> | ||
|
||
### Question | ||
|
||
<!-- Describe below this line the question --> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.