Commit fb126c7 1 parent bf9816c commit fb126c7 Copy full SHA for fb126c7
File tree 4 files changed +9
-9
lines changed
4 files changed +9
-9
lines changed Original file line number Diff line number Diff line change 2
2
3
3
on :
4
4
push :
5
- branches : [ master ]
5
+ branches : [ main ]
6
6
pull_request :
7
- branches : [ master ]
7
+ branches : [ main ]
8
8
schedule :
9
9
# Run daily (* needs quotes).
10
10
- cron : ' 0 4 * * *'
Original file line number Diff line number Diff line change @@ -62,8 +62,8 @@ To install `tox`, run:
62
62
### Creating a new branch
63
63
64
64
To start working on a pull request, create a new branch to work on. You
65
- should never develop on your master branch because your master branch
66
- should always be synchronized with the main repo’s master branch, which
65
+ should never develop on your main branch because your main branch
66
+ should always be synchronized with the main repo’s main branch, which
67
67
is challenging if it has new commits. Create a branch using:
68
68
69
69
$ git checkout -b your-new-branch
Original file line number Diff line number Diff line change 1
1
# Vulture - Find dead code
2
2
3
3
![ CI: Test ] ( https://github.com/jendrikseipp/vulture/workflows/CI/badge.svg )
4
- [ ![ Codecov Badge] ( https://codecov.io/gh/jendrikseipp/vulture/branch/master /graphs/badge.svg )] ( https://codecov.io/gh/jendrikseipp/vulture?branch=master )
4
+ [ ![ Codecov Badge] ( https://codecov.io/gh/jendrikseipp/vulture/branch/main /graphs/badge.svg )] ( https://codecov.io/gh/jendrikseipp/vulture?branch=main )
5
5
6
6
Vulture finds unused code in Python programs. This is useful for
7
7
cleaning up and finding errors in large code bases. If you run Vulture
@@ -327,8 +327,8 @@ Please visit <https://github.com/jendrikseipp/vulture> to report any
327
327
issues or to make pull requests.
328
328
329
329
- Contributing guide :
330
- [CONTRIBUTING.md](https://github.com/jendrikseipp/vulture/blob/master /CONTRIBUTING.md)
330
+ [CONTRIBUTING.md](https://github.com/jendrikseipp/vulture/blob/main /CONTRIBUTING.md)
331
331
- Release notes :
332
- [CHANGELOG.md](https://github.com/jendrikseipp/vulture/blob/master /CHANGELOG.md)
332
+ [CHANGELOG.md](https://github.com/jendrikseipp/vulture/blob/main /CHANGELOG.md)
333
333
- Roadmap :
334
- [TODO.md](https://github.com/jendrikseipp/vulture/blob/master /TODO.md)
334
+ [TODO.md](https://github.com/jendrikseipp/vulture/blob/main /TODO.md)
Original file line number Diff line number Diff line change 3
3
4
4
NOQA_REGEXP = re .compile (
5
5
# Use the same regex as flake8 does.
6
- # https://gitlab.com/pycqa/flake8/-/tree/master /src/flake8/defaults.py
6
+ # https://gitlab.com/pycqa/flake8/-/tree/main /src/flake8/defaults.py
7
7
# We're looking for items that look like this:
8
8
# `# noqa`
9
9
# `# noqa: E123`
You can’t perform that action at this time.
0 commit comments