Skip to content

Commit fb126c7

Browse files
committed
Rename master branch to main.
1 parent bf9816c commit fb126c7

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

.github/workflows/main.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ name: CI
22

33
on:
44
push:
5-
branches: [ master ]
5+
branches: [ main ]
66
pull_request:
7-
branches: [ master ]
7+
branches: [ main ]
88
schedule:
99
# Run daily (* needs quotes).
1010
- cron: '0 4 * * *'

CONTRIBUTING.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,8 @@ To install `tox`, run:
6262
### Creating a new branch
6363

6464
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
6767
is challenging if it has new commits. Create a branch using:
6868

6969
$ git checkout -b your-new-branch

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Vulture - Find dead code
22

33
![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)
55

66
Vulture finds unused code in Python programs. This is useful for
77
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
327327
issues or to make pull requests.
328328

329329
- 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)
331331
- 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)
333333
- 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)

vulture/noqa.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
NOQA_REGEXP = re.compile(
55
# 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
77
# We're looking for items that look like this:
88
# `# noqa`
99
# `# noqa: E123`

0 commit comments

Comments
 (0)