https://github.com/deepal/stdlint-config-bibliocircle
bibliocircle's coding standards rule set for stdlint
https://github.com/deepal/stdlint-config-bibliocircle
Last synced: 10 months ago
JSON representation
bibliocircle's coding standards rule set for stdlint
- Host: GitHub
- URL: https://github.com/deepal/stdlint-config-bibliocircle
- Owner: deepal
- Created: 2021-05-18T16:39:56.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2021-05-18T23:51:59.000Z (about 5 years ago)
- Last Synced: 2025-08-16T14:06:52.694Z (10 months ago)
- Language: JavaScript
- Size: 40 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# stdlint-config-bibliocircle
This repository contains a rule set for [stdlint](https://github.com/deepal/stdlint) used by bibliocircle.com
Rules in this set are as follows:
- `conventionalCommits`: Commits messages on the default branch should follow [Conventional Commits](https://www.conventionalcommits.org/en/v1.0.0/) format.
- `noIdeaWorkspace`: No `.idea` directory should be committed to the repository
- `noVSCodeWorkspace`: No `.vscode` directory should be committed to the repository
- `requireEngines`: "engines" field should exist in package.json
- `noBlacklistedPackages`: Repository does not use any blacklisted packages (Please refer to the rule source to see the list of packages)
- `prettierEslint`: Repository only uses eslint `prettier` config for linting
- `pullRequestTemplate`: Repository contains a `.github/PULL_REQUEST_TEMPLATE.md` file
- `codeOwnersFile`: Repository contains a `.github/CODEOWNERS` file
- `deleteHeadBranchOnMerge`: Head branches should be deleted after the PR is merged
- `noMergeCommit`: Merge commits should not be allowed on the default branch
- `noRebaseMerge`: Rebase Merge should be disabled
- `squashMerge`: Squash Merge should be enabled
- `branchProtection`: Branch protection rules must be enabled on the default branch
- `minPRReviewers`: Pull requests to the default branch should require at least 2 approvals
- `requireCodeOwnerReview`: Pull requests to the default branch should require approvals from code owners
- `branchProtectionAppliedToAdmins`: Branch protection rules must be applied to admin users
- `noForcePush`: Force push to the default branch should be disabled
- `noDefaultBranchDeletion`: Deletion of the default branch should be disabled
- `prsRequireChecks`: PRs to the default branch should require github checks to pass
- `dependabotAlertsEnablled`: Dependabot alerts must be enabled on the repository