This repository has been archived by the owner on Jun 17, 2024. It is now read-only.
-
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.
fix: Added eslint and switched to shareable configuration for eslint …
…and prettier
- Loading branch information
1 parent
480eaa4
commit e8331a2
Showing
6 changed files
with
11,549 additions
and
8,955 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 |
---|---|---|
@@ -1,103 +1,103 @@ | ||
module.exports = { | ||
'branches': ['master'], | ||
'plugins': [ | ||
[ | ||
'@semantic-release/commit-analyzer', | ||
{ | ||
'preset': 'conventionalcommits', | ||
'releaseRules': [ | ||
{ | ||
'breaking': true, | ||
'release': 'major', | ||
}, | ||
{ | ||
'type': 'feat', | ||
'release': 'minor', | ||
}, | ||
{ | ||
'type': 'fix', | ||
'release': 'patch', | ||
}, | ||
{ | ||
'type': 'chore', | ||
'release': 'patch', | ||
}, | ||
{ | ||
'type': 'refactor', | ||
'release': 'patch', | ||
}, | ||
{ | ||
'type': 'docs', | ||
'release': 'patch', | ||
}, | ||
{ | ||
'type': 'perf', | ||
'release': 'patch', | ||
}, | ||
{ | ||
'type': 'test', | ||
'release': 'patch', | ||
}, | ||
{ | ||
'scope': 'no-release', | ||
'release': false, | ||
}, | ||
], | ||
}, | ||
], | ||
[ | ||
'@semantic-release/release-notes-generator', | ||
{ | ||
'preset': 'conventionalcommits', | ||
'presetConfig': { | ||
'types': [ | ||
{ | ||
'type': 'feat', | ||
'section': 'Features', | ||
}, | ||
{ | ||
'type': 'fix', | ||
'section': 'Fixes', | ||
}, | ||
{ | ||
'type': 'chore', | ||
'section': 'Other', | ||
}, | ||
branches: ['master'], | ||
plugins: [ | ||
[ | ||
'@semantic-release/commit-analyzer', | ||
{ | ||
'type': 'docs', | ||
'section': 'Documentation', | ||
}, | ||
{ | ||
'type': 'style', | ||
'section': 'UI', | ||
}, | ||
{ | ||
'type': 'refactor', | ||
'section': 'Refactoring', | ||
preset: 'conventionalcommits', | ||
releaseRules: [ | ||
{ | ||
breaking: true, | ||
release: 'major', | ||
}, | ||
{ | ||
type: 'feat', | ||
release: 'minor', | ||
}, | ||
{ | ||
type: 'fix', | ||
release: 'patch', | ||
}, | ||
{ | ||
type: 'chore', | ||
release: 'patch', | ||
}, | ||
{ | ||
type: 'refactor', | ||
release: 'patch', | ||
}, | ||
{ | ||
type: 'docs', | ||
release: 'patch', | ||
}, | ||
{ | ||
type: 'perf', | ||
release: 'patch', | ||
}, | ||
{ | ||
type: 'test', | ||
release: 'patch', | ||
}, | ||
{ | ||
scope: 'no-release', | ||
release: false, | ||
}, | ||
], | ||
}, | ||
], | ||
[ | ||
'@semantic-release/release-notes-generator', | ||
{ | ||
'type': 'perf', | ||
'section': 'Performance Improvements', | ||
preset: 'conventionalcommits', | ||
presetConfig: { | ||
types: [ | ||
{ | ||
type: 'feat', | ||
section: 'Features', | ||
}, | ||
{ | ||
type: 'fix', | ||
section: 'Fixes', | ||
}, | ||
{ | ||
type: 'chore', | ||
section: 'Other', | ||
}, | ||
{ | ||
type: 'docs', | ||
section: 'Documentation', | ||
}, | ||
{ | ||
type: 'style', | ||
section: 'UI', | ||
}, | ||
{ | ||
type: 'refactor', | ||
section: 'Refactoring', | ||
}, | ||
{ | ||
type: 'perf', | ||
section: 'Performance Improvements', | ||
}, | ||
{ | ||
type: 'test', | ||
section: 'Testing', | ||
}, | ||
], | ||
}, | ||
}, | ||
], | ||
'@semantic-release/npm', | ||
'@semantic-release/github', | ||
[ | ||
'semantic-release-telegram-bot', | ||
{ | ||
'type': 'test', | ||
'section': 'Testing', | ||
notifications: [ | ||
{ | ||
chatIds: process.env.TELEGRAM_BOT_CHAT_ID, | ||
}, | ||
], | ||
}, | ||
], | ||
}, | ||
}, | ||
], | ||
], | ||
'@semantic-release/npm', | ||
'@semantic-release/github', | ||
[ | ||
'semantic-release-telegram-bot', | ||
{ | ||
notifications: [ | ||
{ | ||
chatIds: process.env.TELEGRAM_BOT_CHAT_ID, | ||
} | ||
] | ||
} | ||
] | ||
], | ||
}; | ||
} |
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
Oops, something went wrong.