Skip to content

Commit 87beb0c

Browse files
authored
fix(eslint-config): Fix the repository url (#365)
fix(eslint-config): Fix the repository url fix(eslint-config): Fix the repository url
1 parent a06a1bb commit 87beb0c

File tree

5 files changed

+33
-10
lines changed

5 files changed

+33
-10
lines changed

.github/CONTRIBUTING.md

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

3-
I appreciate your considering contributing `eslint-config-moneyforward`. This document is a guide to help make your contribution easier.
3+
I appreciate your considering contributing `frontend-tools`. This document is a guide to help make your contribution easier.
44

55
## Getting Started
66

@@ -34,12 +34,12 @@ The main scripts used during development are:
3434

3535
### Reporting Issues
3636

37-
1. Check [the Issue Tracker](https://github.com/moneyforward/eslint-config-moneyforward/issues) for existing issues.
38-
2. When requesting a new issue or feature, please use [the templates](https://github.com/moneyforward/eslint-config-moneyforward/issues/new/choose) and provide as much detail as possible.
37+
1. Check [the Issue Tracker](https://github.com/moneyforward/frontend-tools/issues) for existing issues.
38+
2. When requesting a new issue or feature, please use [the templates](https://github.com/moneyforward/frontend-tools/issues/new/choose) and provide as much detail as possible.
3939

4040
### Development
4141

42-
1. Check [the Issue Tracker](https://github.com/moneyforward/eslint-config-moneyforward/issues), make sure if there is anything relevant to the problem you are trying to solve.
42+
1. Check [the Issue Tracker](https://github.com/moneyforward/frontend-tools/issues), make sure if there is anything relevant to the problem you are trying to solve.
4343
2. Keep the repository you did fork up to date.
4444

4545
```bash
@@ -79,7 +79,9 @@ The main scripts used during development are:
7979
8080
### Code Style
8181

82-
- Code according to [ESlint](/.eslintrc.js) and [Prettier](/.prettierrc.js) rules.
82+
- Code according to[Prettier](/prettier.config.js) and the following ESLint rules:
83+
- **eslint-config-moneyforward**: [eslint.config.mjs](/packages/eslint-config/eslint.config.mjs)
84+
- **@moneyforward/stylelint-config**: [stylelint.config.js](/packages/stylelint-config/eslint.config.js)
8385
- Keep your code in a consistent style.
8486

8587
### Testing

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
## Pre-flight checklist
1919

20-
- [ ] I have read the [Contributing Guidelines](https://github.com/moneyforward/eslint-config-moneyforward/blob/main/.github/CONTRIBUTING.md)
20+
- [ ] I have read the [Contributing Guidelines](https://github.com/moneyforward/frontend-tools/blob/main/.github/CONTRIBUTING.md)
2121
- [ ] Performed a self-review of my code
2222

2323
## References

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2021 Money Forward, Inc.
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

packages/eslint-config/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# eslint-config-moneyforward
22

33
[![Version](https://img.shields.io/npm/v/eslint-config-moneyforward.svg?style=flat-square)](https://www.npmjs.com/package/eslint-config-moneyforward?activeTab=versions)
4-
[![License](https://img.shields.io/github/license/moneyforward/eslint-config-moneyforward.svg?style=flat-square)](https://github.com/moneyforward/eslint-config-moneyforward/blob/main/LICENSE)
4+
[![License](https://img.shields.io/github/license/moneyforward/frontend-tools.svg?style=flat-square)](https://github.com/moneyforward/frontend-tools/blob/main/packages/eslint-config/LICENSE)
55

66
This package provides moneyforward's `.eslintrc` as an extensible shared config.
77

@@ -180,8 +180,8 @@ npm uninstall eslint-plugin-promise eslint-plugin-import eslint-plugin-unicorn \
180180

181181
## Troubleshooting
182182

183-
- [ESLint Configuration Issue with Non-Standard TSConfig Filenames in Flat Config](https://github.com/moneyforward/frontend-tools/blob/main/packages/eslint-config-moneyforward/docs/troubleshooting/eslint-configuration-issue-with-non-standard-tsconfig-filenames-in-flat-config.md)
183+
- [ESLint Configuration Issue with Non-Standard TSConfig Filenames in Flat Config](https://github.com/moneyforward/frontend-tools/blob/main/packages/eslint-config/docs/troubleshooting/eslint-configuration-issue-with-non-standard-tsconfig-filenames-in-flat-config.md)
184184

185185
## License
186186

187-
Open source [licensed as MIT](https://github.com/moneyforward/frontend-tools/blob/main/packages/eslint-config-moneyforward/LICENSE).
187+
Open source [licensed as MIT](https://github.com/moneyforward/frontend-tools/blob/main/packages/eslint-config/LICENSE).

packages/eslint-config/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
"bugs": {
4747
"url": "https://github.com/moneyforward/frontend-tools/issues"
4848
},
49-
"homepage": "https://github.com/moneyforward/frontend-tools/tree/main/packages/eslint-config-moneyforward#readme",
49+
"homepage": "https://github.com/moneyforward/frontend-tools/tree/main/packages/eslint-config#readme",
5050
"dependencies": {
5151
"@next/eslint-plugin-next": "^15.0.3",
5252
"@typescript-eslint/eslint-plugin": "^8.16.0",

0 commit comments

Comments
 (0)