-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #25 from Boehringer-Ingelheim/next
release
- Loading branch information
Showing
12 changed files
with
3,086 additions
and
3,357 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 |
---|---|---|
@@ -1 +1 @@ | ||
v18 | ||
v20 |
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,16 +1,24 @@ | ||
/** @type {import('semantic-release').Options} */ | ||
module.exports = { | ||
branches: [ | ||
"master", | ||
{ | ||
name: "next", | ||
prerelease: true, | ||
}, | ||
], | ||
plugins: [ | ||
"@semantic-release/commit-analyzer", | ||
"@semantic-release/release-notes-generator", | ||
"@semantic-release/changelog", | ||
"@semantic-release/npm", | ||
[ | ||
"@semantic-release/git", | ||
{ | ||
assets: ["CHANGELOG.md", "README.md", "package.json", "package-lock.json"], | ||
message: "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}", | ||
}, | ||
], | ||
"@semantic-release/github", | ||
"@semantic-release/npm", | ||
], | ||
}; |
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 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,20 @@ | ||
/** | ||
* Workaround to allow ESLint to resolve plugins that were installed | ||
* by an external config, see https://github.com/eslint/eslint/issues/3458. | ||
*/ | ||
require("@rushstack/eslint-patch/modern-module-resolution"); | ||
|
||
const isCI = require("is-ci"); | ||
|
||
/** @type {import('eslint').ESLint.ConfigData} */ | ||
module.exports = { | ||
rules: isCI | ||
? {} | ||
: { | ||
// Only activate in CI, as suggested here: https://typescript-eslint.io/linting/troubleshooting/performance-troubleshooting#eslint-plugin-import | ||
"import/no-cycle": "off", | ||
"import/no-deprecated": "off", | ||
"import/no-named-as-default": "off", | ||
"import/no-unused-modules": "off", | ||
}, | ||
}; |
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,19 @@ | ||
/** | ||
* While the sorting of imports is done by `eslint-plugin-perfectionist/sort-imports`, | ||
* the order and grouping of imports is still taken from the previous configuration of `eslint-plugin-import/order`, | ||
* as it feels more natural. | ||
* The following group names are available for configuration: https://eslint-plugin-perfectionist.azat.io/rules/sort-imports#groups | ||
*/ | ||
const SORT_IMPORTS_GROUPS = [ | ||
["builtin", "builtin-type"], | ||
["external", "external-type"], | ||
["internal", "internal-type"], | ||
["parent", "parent-type", "sibling", "sibling-type", "index", "index-type"], | ||
["style", "side-effect"], | ||
"object", | ||
"unknown", | ||
]; | ||
|
||
module.exports = { | ||
SORT_IMPORTS_GROUPS, | ||
}; |
Oops, something went wrong.