2021-09-09 22:43:19 +03:00
|
|
|
// @ts-check
|
|
|
|
/** @type {import('./src/types/BeachballOptions').RepoOptions}*/
|
2020-08-21 20:18:14 +03:00
|
|
|
module.exports = {
|
|
|
|
disallowedChangeTypes: ['major'],
|
2021-09-09 22:43:19 +03:00
|
|
|
ignorePatterns: [
|
|
|
|
'.*ignore',
|
|
|
|
'.github/**',
|
2022-08-06 04:31:00 +03:00
|
|
|
'.prettierrc.json5',
|
2021-09-09 22:43:19 +03:00
|
|
|
'.vscode/**',
|
|
|
|
'docs/**',
|
|
|
|
'jest.*.js',
|
2022-08-06 04:31:00 +03:00
|
|
|
'renovate.json5',
|
2023-05-10 23:12:31 +03:00
|
|
|
'scripts/**',
|
2022-08-22 20:56:45 +03:00
|
|
|
'src/__*/**',
|
2021-09-09 22:43:19 +03:00
|
|
|
// This one is especially important (otherwise dependabot would be blocked by change file requirements)
|
|
|
|
'yarn.lock',
|
|
|
|
],
|
2020-08-21 20:18:14 +03:00
|
|
|
};
|