Skip to content

Commit d4a5de6

Browse files
committed
Transfer ownership update
1 parent 2020221 commit d4a5de6

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# cpp-linter-hooks
22

3-
[![Test](https://github.com/shenxianpeng/cpp-linter-hooks/actions/workflows/test.yml/badge.svg)](https://github.com/shenxianpeng/cpp-linter-hooks/actions/workflows/test.yml)
4-
[![codecov](https://codecov.io/gh/shenxianpeng/cpp-linter-hooks/branch/main/graph/badge.svg?token=L74Z3HZ4Y5)](https://codecov.io/gh/shenxianpeng/cpp-linter-hooks)
3+
[![Test](https://github.com/cpp-linter/cpp-linter-hooks/actions/workflows/test.yml/badge.svg)](https://github.com/cpp-linter/cpp-linter-hooks/actions/workflows/test.yml)
4+
[![codecov](https://codecov.io/gh/cpp-linter/cpp-linter-hooks/branch/main/graph/badge.svg?token=L74Z3HZ4Y5)](https://codecov.io/gh/cpp-linter/cpp-linter-hooks)
55

66
Using `clang-format` and `clang-tidy` hooks with [pre-commit](https://pre-commit.com/) to lint your C/C++ code.
77

@@ -13,7 +13,7 @@ Add this to your `.pre-commit-config.yaml`
1313

1414
```yaml
1515
repos:
16-
- repo: https://github.com/shenxianpeng/cpp-linter-hooks
16+
- repo: https://github.com/cpp-linter/cpp-linter-hooks
1717
rev: v0.2.0 # Use the ref you want to point at
1818
hooks:
1919
- id: clang-format
@@ -26,7 +26,7 @@ The example of using custom config: `.clang-format` and `.clang-tidy`
2626

2727
```yaml
2828
repos:
29-
- repo: https://github.com/shenxianpeng/cpp-linter-hooks
29+
- repo: https://github.com/cpp-linter/cpp-linter-hooks
3030
rev: v0.2.0
3131
hooks:
3232
- id: clang-format
@@ -35,11 +35,11 @@ repos:
3535
args: [--checks=.clang-tidy] # path/to/.clang-tidy
3636
```
3737

38-
The example of using any version of [clang-tools](https://github.com/shenxianpeng/clang-tools-pip).
38+
The example of using any version of [clang-tools](https://github.com/cpp-linter/clang-tools-pip).
3939

4040
```yaml
4141
repos:
42-
- repo: https://github.com/shenxianpeng/cpp-linter-hooks
42+
- repo: https://github.com/cpp-linter/cpp-linter-hooks
4343
rev: v0.2.0
4444
hooks:
4545
- id: clang-format

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
setup(
55
name='cpp_linter_hooks',
66
description='Automatically check c/c++ with clang-format and clang-tidy',
7-
url='https://github.com/shenxianpeng/cpp-linter-hooks',
7+
url='https://github.com/cpp-linter/cpp-linter-hooks',
88
version='0.2.0',
99
author="Peter Shen",
1010
author_email="xianpeng.shen@gmail.com",

0 commit comments

Comments
 (0)