Skip to content

Commit

Permalink
[Release] v1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ptkdev committed May 15, 2020
1 parent 3860533 commit e1a9f43
Show file tree
Hide file tree
Showing 33 changed files with 12,575 additions and 946 deletions.
27 changes: 27 additions & 0 deletions .all-contributorsrc
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"
}
15 changes: 15 additions & 0 deletions .editorconfig
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
107 changes: 63 additions & 44 deletions .eslintrc.json
100755 → 100644
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
}
}
4 changes: 0 additions & 4 deletions .foreverignore

This file was deleted.

145 changes: 145 additions & 0 deletions .gitattributes
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
37 changes: 37 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
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. -->
14 changes: 14 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.md
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 -->
10 changes: 10 additions & 0 deletions .github/ISSUE_TEMPLATE/question.md
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 -->
Binary file added .github/assets/json-token-replace-logo.png
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.
Binary file added .github/assets/social_discord.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added .github/assets/social_telegram.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit e1a9f43

Please sign in to comment.