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.
- package/.github/dependabot.yml +9 -0
- package/.github/workflows/test.yml +2 -5
- package/README.md +1 -1
- package/index.js +2 -0
- package/package.json +2 -2
|
@@ -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:
|
|
31
|
+
run: yarn install --frozen-lockfile
|
|
35
32
|
env:
|
|
36
33
|
CI: true
|
|
37
|
-
- run:
|
|
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`コメントを付けておくことで、`
|
|
35
|
+
Errorが出てほしい記述には、`// eslint-disable-next-line`コメントを付けておくことで、`yarn test`コマンドで確認できるようになります。
|
package/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "eslint-config-matsuri",
|
|
3
|
-
"version": "0.0.
|
|
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.
|
|
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",
|