* Add renovate.json

* config updates

* add beachball ignores

* Change files

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Elizabeth Craig <elcraig@microsoft.com>
This commit is contained in:
renovate[bot] 2022-08-06 01:31:00 +00:00 коммит произвёл GitHub
Родитель 8d96c5fe69
Коммит ad533bfb66
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
6 изменённых файлов: 40 добавлений и 8 удалений

Просмотреть файл

@ -1,7 +0,0 @@
{
"trailingComma": "es5",
"tabWidth": 2,
"singleQuote": true,
"printWidth": 120,
"arrowParens": "avoid"
}

16
.prettierrc.json5 Normal file
Просмотреть файл

@ -0,0 +1,16 @@
{
"trailingComma": "es5",
"tabWidth": 2,
"singleQuote": true,
"printWidth": 120,
"arrowParens": "avoid",
"overrides": [
{
// format .json5 files as jsonc for VS Code support
"files": ["*.json5"],
"options": {
"parser": "json"
}
}
]
}

6
.vscode/settings.json поставляемый
Просмотреть файл

@ -10,5 +10,11 @@
"search.exclude": {
"**/node_modules": true,
"**/lib": true
},
"files.associations": {
// VS Code doesn't have json5 support, so handle .json5 files as jsonc.
// Note that Prettier must also be configured to format *.json5 as jsonc
// (since json5 allows things like unquoted keys that jsonc doesn't).
"*.json5": "jsonc"
}
}

Просмотреть файл

@ -5,10 +5,11 @@ module.exports = {
ignorePatterns: [
'.*ignore',
'.github/**',
'.prettierrc',
'.prettierrc.json5',
'.vscode/**',
'docs/**',
'jest.*.js',
'renovate.json5',
'src/__e2e__/**',
'src/__tests__/**',
'src/fixtures/**',

Просмотреть файл

@ -0,0 +1,7 @@
{
"type": "none",
"comment": "Configure Renovate",
"packageName": "beachball",
"email": "elcraig@microsoft.com",
"dependentChangeType": "none"
}

9
renovate.json5 Normal file
Просмотреть файл

@ -0,0 +1,9 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"github>ecraig12345/renovate-config:beachballLibraryRecommended",
"github>ecraig12345/renovate-config:groupJest",
"github>ecraig12345/renovate-config:keepFresh"
],
"labels": ["renovate"]
}