-
-
Notifications
You must be signed in to change notification settings - Fork 90
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
803 changed files
with
50,192 additions
and
45,791 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,50 @@ | ||
module.exports = { | ||
types: [ | ||
{ value: 'feat', name: 'feat: A new feature' }, | ||
{ value: 'fix', name: 'fix: A bug fix' }, | ||
{ value: 'docs', name: 'docs: Documentation only changes' }, | ||
{ | ||
value: 'cleanup', | ||
name: 'cleanup: A code change that neither fixes a bug nor adds a feature', | ||
}, | ||
{ | ||
value: 'chore', | ||
name: "chore: Other changes that don't modify src or test files", | ||
}, | ||
], | ||
|
||
scopes: [ | ||
{ name: 'core', description: 'AutoMapper core' }, | ||
{ | ||
name: 'classes', | ||
description: 'AutoMapper classes strategy', | ||
}, | ||
{ name: 'pojos', description: 'AutoMapper pojos strategy' }, | ||
{ | ||
name: 'nestjs', | ||
description: 'AutoMapper nestjs integration))', | ||
}, | ||
], | ||
// override the messages, defaults are as follows | ||
messages: { | ||
type: "Select the type of change that you're committing:", | ||
scope: '\nDenote the SCOPE of this change (optional):', | ||
// used if allowCustomScopes is true | ||
customScope: 'Denote the SCOPE of this change:', | ||
subject: | ||
'Write a SHORT, IMPERATIVE (lowercase) description of the change:\n', | ||
body: 'Provide a LONGER description of the change (optional). Use "|" to break new line:\n', | ||
breaking: 'List any BREAKING CHANGES (optional):\n', | ||
footer: 'List any ISSUES CLOSED by this change (optional). E.g.: #31, #34:\n', | ||
confirmCommit: | ||
'Are you sure you want to proceed with the commit above?', | ||
}, | ||
|
||
allowCustomScopes: true, | ||
allowBreakingChanges: ['feat', 'fix'], | ||
// skip any questions you want | ||
skipQuestions: ['ticketNumber'], | ||
|
||
// limit subject length | ||
subjectLimit: 100, | ||
}; |
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 +1 @@ | ||
GITHUB_TOKEN | ||
GITHUB_TOKEN= |
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,80 +1,35 @@ | ||
{ | ||
"root": true, | ||
"ignorePatterns": ["**/*"], | ||
"plugins": ["@nrwl/nx"], | ||
"rules": { | ||
"@typescript-eslint/no-explicit-any": 0 | ||
}, | ||
"overrides": [ | ||
{ | ||
"files": ["*.ts", "*.tsx", "*.js", "*.jsx"], | ||
"rules": { | ||
"@nrwl/nx/enforce-module-boundaries": [ | ||
"error", | ||
{ | ||
"enforceBuildableLibDependency": true, | ||
"allow": [], | ||
"depConstraints": [ | ||
{ | ||
"sourceTag": "type:plugin", | ||
"onlyDependOnLibsWithTags": [ | ||
"type:library", | ||
"type:type-defs", | ||
"type:plugin" | ||
"root": true, | ||
"ignorePatterns": ["**/*"], | ||
"plugins": ["@nrwl/nx"], | ||
"overrides": [ | ||
{ | ||
"files": ["*.ts", "*.tsx", "*.js", "*.jsx"], | ||
"rules": { | ||
"@nrwl/nx/enforce-module-boundaries": [ | ||
"error", | ||
{ | ||
"enforceBuildableLibDependency": true, | ||
"allow": [], | ||
"depConstraints": [ | ||
{ | ||
"sourceTag": "*", | ||
"onlyDependOnLibsWithTags": ["*"] | ||
} | ||
] | ||
} | ||
] | ||
}, | ||
{ | ||
"sourceTag": "type:library", | ||
"onlyDependOnLibsWithTags": ["type:type-defs"] | ||
}, | ||
{ | ||
"sourceTag": "type:integration", | ||
"onlyDependOnLibsWithTags": ["type:library", "type:type-defs"] | ||
}, | ||
{ | ||
"sourceTag": "type:test", | ||
"onlyDependOnLibsWithTags": [ | ||
"type:library", | ||
"type:plugin", | ||
"type:integration", | ||
"type:type-defs", | ||
"type:transformer-plugin" | ||
] | ||
}, | ||
{ | ||
"sourceTag": "type:transformer-plugin", | ||
"onlyDependOnLibsWithTags": ["type:plugin"] | ||
}, | ||
{ | ||
"sourceTag": "type:utility", | ||
"onlyDependOnLibsWithTags": [ | ||
"type:library", | ||
"type:type-defs", | ||
"type:plugin" | ||
] | ||
}, | ||
{ | ||
"sourceTag": "scope:classes", | ||
"onlyDependOnLibsWithTags": [ | ||
"type:type-defs", | ||
"scope:core", | ||
"scope:classes" | ||
] | ||
} | ||
] | ||
} | ||
] | ||
} | ||
}, | ||
{ | ||
"files": ["*.ts", "*.tsx"], | ||
"extends": ["plugin:@nrwl/nx/typescript"], | ||
"rules": {} | ||
}, | ||
{ | ||
"files": ["*.js", "*.jsx"], | ||
"extends": ["plugin:@nrwl/nx/javascript"], | ||
"rules": {} | ||
} | ||
] | ||
} | ||
}, | ||
{ | ||
"files": ["*.ts", "*.tsx"], | ||
"extends": ["plugin:@nrwl/nx/typescript"], | ||
"rules": {} | ||
}, | ||
{ | ||
"files": ["*.js", "*.jsx"], | ||
"extends": ["plugin:@nrwl/nx/javascript"], | ||
"rules": {} | ||
} | ||
] | ||
} |
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
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -37,4 +37,6 @@ testem.log | |
# System Files | ||
.DS_Store | ||
Thumbs.db | ||
/.env | ||
|
||
old | ||
.env |
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,3 +1,11 @@ | ||
{ | ||
"singleQuote": true | ||
"singleQuote": true, | ||
"tabWidth": 4, | ||
"printWidth": 80, | ||
"overrides": [ | ||
{ | ||
"files": [".prettierrc", ".swcrc"], | ||
"options": { "parser": "json" } | ||
} | ||
] | ||
} |
Oops, something went wrong.