Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat!: release version 1 #1097

Merged
merged 1 commit into from
Jan 24, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
23 changes: 23 additions & 0 deletions .all-contributorsrc
Original file line number Diff line number Diff line change
Expand Up @@ -400,6 +400,18 @@
"example"
]
},
{
"login": "zaytsevand",
"name": "Andrey Zaytsev",
"avatar_url": "https://avatars.githubusercontent.com/u/5207748?v=4",
"profile": "https:/zaytsevand",
"contributions": [
"code",
"example",
"doc",
"test"
]
},
{
"login": "codingtenshi",
"name": "Tenshi Codes",
Expand Down Expand Up @@ -439,6 +451,17 @@
"test"
]
},
{
"login": "anaysarkar7",
"name": "Anay Sarkar",
"avatar_url": "https://avatars.githubusercontent.com/u/53341181?v=4",
"profile": "https://linktr.ee/anaysarkar7",
"contributions": [
"example",
"code",
"test"
]
},
{
"login": "LouisXhaferi",
"name": "Louis Xhaferi",
Expand Down
2 changes: 2 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
.github/
docs/
7 changes: 6 additions & 1 deletion .eslintignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
node_modules
docs
lib
output
output
src/generators/template
test/generators/template
examples/integrate-with-react
src/processors/TemplateInputProcessor.ts
test/processors/TemplateInputProcessor.spec.ts
25 changes: 7 additions & 18 deletions .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,16 @@
"@typescript-eslint",
"sonarjs",
"security",
"github"
"github",
"prettier"
],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
"plugin:sonarjs/recommended",
"plugin:security/recommended"
"plugin:security/recommended",
"prettier"
],
"rules": {
"strict": 0,
Expand Down Expand Up @@ -78,30 +80,15 @@
],
"no-spaced-func": 2,
"semi-spacing": 2,
"quotes": [
2,
"single"
],
"key-spacing": [
2,
{
"beforeColon": false,
"afterColon": true
}
],
"indent": [
2,
2
],
"no-lonely-if": 2,
"no-floating-decimal": 2,
"brace-style": [
2,
"1tbs",
{
"allowSingleLine": true
}
],
"comma-style": [
2,
"last"
Expand Down Expand Up @@ -183,7 +170,9 @@
"prefer-const": 2,
"prefer-spread": 2,
"prefer-template": 2,
"@typescript-eslint/no-unused-vars": 2
"@typescript-eslint/no-unused-vars": 2,
"prettier/prettier": 2,
"sonarjs/no-identical-functions": "off"
},
"overrides": [
{
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/if-nodejs-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ on:
- master
# below lines are not enough to have release supported for these branches
# make sure configuration of `semantic-release` package mentions these branches
- next
- next-spec
- next-major
- next-major-spec
Expand Down
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,6 @@ node_modules
.vscode
coverage
lib
*.DS_Store
*.DS_Store
.idea
output
6 changes: 6 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"semi": true,
"trailingComma": "none",
"singleQuote": true,
"printWidth": 80
}
Loading