-
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.
- Loading branch information
Showing
17 changed files
with
538 additions
and
5 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
10 changes: 10 additions & 0 deletions
10
common/changes/@kickstartds/jsonschema-utils/main_2024-08-20-13-12.json
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 @@ | ||
{ | ||
"changes": [ | ||
{ | ||
"packageName": "@kickstartds/jsonschema-utils", | ||
"comment": "add cms layering", | ||
"type": "minor" | ||
} | ||
], | ||
"packageName": "@kickstartds/jsonschema-utils" | ||
} |
10 changes: 10 additions & 0 deletions
10
common/changes/@kickstartds/layering-example/main_2024-08-20-13-12.json
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 @@ | ||
{ | ||
"changes": [ | ||
{ | ||
"packageName": "@kickstartds/layering-example", | ||
"comment": "first commit", | ||
"type": "patch" | ||
} | ||
], | ||
"packageName": "@kickstartds/layering-example" | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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,43 @@ | ||
// This is a workaround for https://github.com/eslint/eslint/issues/3458 | ||
require('@rushstack/eslint-config/patch/modern-module-resolution'); | ||
|
||
module.exports = { | ||
extends: [ | ||
'@rushstack/eslint-config/profile/node-trusted-tool', | ||
'plugin:import/recommended', | ||
'plugin:import/typescript' | ||
], | ||
parserOptions: { tsconfigRootDir: __dirname }, | ||
settings: { | ||
'import/resolver': { | ||
typescript: true, | ||
node: true | ||
}, | ||
'import/ignore': ['node_modules/json-schema-typed/draft-07\\.js$'] | ||
}, | ||
plugins: ['json-files'], | ||
rules: { | ||
'no-unused-vars': 'off', | ||
'@typescript-eslint/no-unused-vars': [ | ||
'warn', // or "error" | ||
{ | ||
argsIgnorePattern: '^_', | ||
varsIgnorePattern: '^_', | ||
caughtErrorsIgnorePattern: '^_' | ||
} | ||
], | ||
'import/namespace': 'off', | ||
'import/order': [ | ||
'error', | ||
{ | ||
groups: ['builtin', 'external', 'parent', 'sibling', 'index'], | ||
'newlines-between': 'always', | ||
alphabetize: { | ||
order: 'asc', | ||
caseInsensitive: true | ||
} | ||
} | ||
], | ||
'json-files/sort-package-json': 'error' | ||
} | ||
}; |
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,3 @@ | ||
lib | ||
temp | ||
dist |
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 @@ | ||
{ | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"type": "node", | ||
"request": "launch", | ||
"name": "Debug Example Dereference", | ||
"program": "${workspaceFolder}/src/index.ts", | ||
"runtimeArgs": ["--experimental-vm-modules"], | ||
"skipFiles": ["<node_internals>/**"], | ||
"resolveSourceMapLocations": ["**", "!**/node_modules/**"] | ||
} | ||
] | ||
} |
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,13 @@ | ||
# Licensing Information | ||
|
||
Copyright 2024 Jonas Ulrich, kickstartDS by ruhmesmeile GmbH [[email protected]]. | ||
|
||
Copyrights in this project are retained by contributors. No copyright assignment | ||
is required to contribute to this project. | ||
|
||
Except as otherwise noted (below and/or in individual files), this project is | ||
licensed under the Apache License, Version 2.0 | ||
([`LICENSE-APACHE`](LICENSE-APACHE) or | ||
http://www.apache.org/licenses/LICENSE-2.0) or the MIT license, | ||
([`LICENSE-MIT`](LICENSE-MIT) or http://opensource.org/licenses/MIT), at your | ||
option. |
Oops, something went wrong.