Skip to content

Commit 34332e7

Browse files
master ➡️ main
1 parent 0750a94 commit 34332e7

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/pull_request_template.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,4 @@
2828

2929

3030

31-
[directory-structure]: ../tree/master/standards#directory-structure
31+
[directory-structure]: ../tree/main/standards#directory-structure

standards/README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -18,23 +18,23 @@ Proposals must include:
1818
### Proposal
1919
#### New standard
2020
1. Check that no one else has begun working on the same proposal by checking open branches and/or asking the other devs.
21-
2. Branch off of `master`. Name the branch after the [filepath](#directory-structure) using kebab-case, prefixed with `proposal-` (e.g. `proposal-practices-linting`).
21+
2. Branch off of `main`. Name the branch after the [filepath](#directory-structure) using kebab-case, prefixed with `proposal-` (e.g. `proposal-practices-linting`).
2222
3. Push the empty branch immediately for visibility and to help prevent duplicate efforts.
2323
4. Draft your proposal using the [standard template](../template-standard.md).
2424
5. Create a pull request with a descriptive title.
2525
6. Find another developer to perform the first, cursory review.
2626

2727
#### Amendment
2828
1. Check that no one else has begun working on the same amendment by checking open branches and/or asking the other devs.
29-
2. Branch off of `master`. Name the branch after the [filepath](#directory-structure) using kebab-case, prefixed with `amendment-` (e.g. `amendment-practices-linting`).
29+
2. Branch off of `main`. Name the branch after the [filepath](#directory-structure) using kebab-case, prefixed with `amendment-` (e.g. `amendment-practices-linting`).
3030
3. Push the empty branch immediately for visibility and to help prevent duplicate efforts.
3131
4. Draft your changes.
3232
5. Create a pull request with a descriptive title.
3333
6. Find another developer to perform the first, cursory review.
3434

3535
#### Repeal
3636
1. Check that no one else has begun working on the same repeal by checking open branches and/or asking the other devs.
37-
2. Branch off of `master`. Name the branch after the [filepath](#directory-structure) using kebab-case, prefixed with `repeal-` (e.g. `repeal-practices-linting`).
37+
2. Branch off of `main`. Name the branch after the [filepath](#directory-structure) using kebab-case, prefixed with `repeal-` (e.g. `repeal-practices-linting`).
3838
3. Push the empty branch immediately for visibility and to help prevent duplicate efforts.
3939
4. Draft your changes.
4040
5. Create a pull request with a descriptive title and informative comment.

standards/practices/linting.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Run from project root:
2626

2727
```sh
2828
npm i -D eslint @highlandsolutions/eslint-config-highland
29-
curl https://raw.githubusercontent.com/HighlandSolutions/development-standards/master/assets/linting/.eslintrc.js > .eslintrc.js
29+
curl https://raw.githubusercontent.com/HighlandSolutions/development-standards/main/assets/linting/.eslintrc.js > .eslintrc.js
3030
```
3131

3232
Tweak `.eslintrc.js` as needed. For example, you might need to enable linting for Vue, add a global, or tweak import resolution.
@@ -51,5 +51,5 @@ Run from project root:
5151

5252
```sh
5353
composer require --dev friendsofphp/php-cs-fixer
54-
curl https://raw.githubusercontent.com/HighlandSolutions/development-standards/master/assets/linting/.php_cs > .php_cs
54+
curl https://raw.githubusercontent.com/HighlandSolutions/development-standards/main/assets/linting/.php_cs > .php_cs
5555
```

0 commit comments

Comments
 (0)