eslint-config-matsuri 0.0.1 → 0.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,9 @@
1
+ version: 2
2
+ updates:
3
+ - package-ecosystem: "npm"
4
+ directory: "/"
5
+ schedule:
6
+ interval: "monthly"
7
+ reviewers:
8
+ - "hrdtbs"
9
+ open-pull-requests-limit: 1
@@ -16,9 +16,6 @@ jobs:
16
16
 
17
17
  steps:
18
18
  - uses: actions/checkout@v3
19
- - uses: pnpm/action-setup@v2.2.2
20
- with:
21
- version: 7
22
19
  - name: Use Node.js ${{ matrix.node-version }}
23
20
  uses: actions/setup-node@v3
24
21
  with:
@@ -31,7 +28,7 @@ jobs:
31
28
  path: |
32
29
  node_modules
33
30
  - name: Install dependencies
34
- run: pnpm install --frozen-lockfile
31
+ run: yarn install --frozen-lockfile
35
32
  env:
36
33
  CI: true
37
- - run: pnpm run test
34
+ - run: yarn run test
package/README.md CHANGED
@@ -32,4 +32,4 @@ module.exports = config;
32
32
  ## Contributing
33
33
 
34
34
  ルールの検証などを行いたい場合は、tests以下にファイルを配置してください。
35
- Errorが出てほしい記述には、`// eslint-disable-next-line`コメントを付けておくことで、`pnpm test`コマンドで確認できるようになります。
35
+ Errorが出てほしい記述には、`// eslint-disable-next-line`コメントを付けておくことで、`yarn test`コマンドで確認できるようになります。
package/index.js CHANGED
@@ -54,9 +54,11 @@ const config = {
54
54
  },
55
55
  ],
56
56
  "react/prop-types": "off",
57
+ "react/display-name": "off",
57
58
  "react-hooks/exhaustive-deps": "error",
58
59
 
59
60
  "jsx-a11y/click-events-have-key-events": "off",
61
+ "jsx-a11y/no-autofocus": "off",
60
62
  },
61
63
  },
62
64
  ],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eslint-config-matsuri",
3
- "version": "0.0.1",
3
+ "version": "0.0.2",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -22,7 +22,7 @@
22
22
  },
23
23
  "dependencies": {
24
24
  "@typescript-eslint/eslint-plugin": "5.30.0",
25
- "@typescript-eslint/parser": "5.30.0",
25
+ "@typescript-eslint/parser": "5.30.5",
26
26
  "eslint-config-prettier": "8.5.0",
27
27
  "eslint-import-resolver-typescript": "^3.2.4",
28
28
  "eslint-plugin-css-reorder": "0.5.1",