@open-turo/eslint-config-react 1.3.1 → 1.3.3
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/renovate.json +1 -1
- package/.github/workflows/release.yaml +3 -2
- package/.github/workflows/update-dependencies.yaml +1 -0
- package/.pre-commit-config.yaml +3 -3
- package/.releaserc.json +1 -24
- package/pack/open-turo-eslint-config-react-1.3.3.tgz +0 -0
- package/package.json +24 -25
- package/pack/open-turo-eslint-config-react-1.3.1.tgz +0 -0
package/.github/renovate.json
CHANGED
|
@@ -13,12 +13,13 @@ jobs:
|
|
|
13
13
|
uses: actions/checkout@v3
|
|
14
14
|
with:
|
|
15
15
|
fetch-depth: 0
|
|
16
|
+
persist-credentials: false
|
|
16
17
|
- name: Semantic release
|
|
17
18
|
id: release
|
|
18
|
-
uses: cycjimmy/semantic-release-action@
|
|
19
|
+
uses: cycjimmy/semantic-release-action@v3
|
|
19
20
|
with:
|
|
20
21
|
extra_plugins: |
|
|
21
|
-
semantic-release-
|
|
22
|
+
@open-turo/semantic-release-config
|
|
22
23
|
env:
|
|
23
24
|
GITHUB_TOKEN: ${{ secrets.OPEN_TURO_GITHUB_TOKEN }}
|
|
24
25
|
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
|
package/.pre-commit-config.yaml
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
repos:
|
|
2
2
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
|
3
|
-
rev: v4.
|
|
3
|
+
rev: v4.4.0
|
|
4
4
|
hooks:
|
|
5
5
|
- id: check-json
|
|
6
6
|
- id: check-yaml
|
|
@@ -12,12 +12,12 @@ repos:
|
|
|
12
12
|
- id: prettier
|
|
13
13
|
stages: [commit]
|
|
14
14
|
- repo: https://github.com/alessandrojcm/commitlint-pre-commit-hook
|
|
15
|
-
rev:
|
|
15
|
+
rev: v9.3.0
|
|
16
16
|
hooks:
|
|
17
17
|
- id: commitlint
|
|
18
18
|
stages: [commit-msg]
|
|
19
19
|
additional_dependencies: ["@open-turo/commitlint-config-conventional"]
|
|
20
20
|
- repo: https://github.com/rhysd/actionlint
|
|
21
|
-
rev: v1.6.
|
|
21
|
+
rev: v1.6.22
|
|
22
22
|
hooks:
|
|
23
23
|
- id: actionlint
|
package/.releaserc.json
CHANGED
|
@@ -1,26 +1,3 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
3
|
-
"plugins": [
|
|
4
|
-
"@semantic-release/commit-analyzer",
|
|
5
|
-
"@semantic-release/release-notes-generator",
|
|
6
|
-
[
|
|
7
|
-
"@semantic-release/npm",
|
|
8
|
-
{
|
|
9
|
-
"tarballDir": "pack"
|
|
10
|
-
}
|
|
11
|
-
],
|
|
12
|
-
[
|
|
13
|
-
"@semantic-release/github",
|
|
14
|
-
{
|
|
15
|
-
"assets": "pack/*.tgz"
|
|
16
|
-
}
|
|
17
|
-
],
|
|
18
|
-
[
|
|
19
|
-
"semantic-release-github-pullrequest",
|
|
20
|
-
{
|
|
21
|
-
"assets": ["package.json", "README.md", "package-lock.json"],
|
|
22
|
-
"baseRef": "main"
|
|
23
|
-
}
|
|
24
|
-
]
|
|
25
|
-
]
|
|
2
|
+
"extends": "@open-turo/semantic-release-config/lib/npm"
|
|
26
3
|
}
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -2,29 +2,28 @@
|
|
|
2
2
|
"author": "Turo engineering",
|
|
3
3
|
"description": "Turo eslint configuration for react",
|
|
4
4
|
"devDependencies": {
|
|
5
|
-
"@commitlint/cli": "
|
|
6
|
-
"@open-turo/commitlint-config-conventional": "
|
|
7
|
-
"@open-turo/eslint-config-typescript": "
|
|
8
|
-
"@semantic-release
|
|
9
|
-
"@typescript-eslint/eslint-plugin": "
|
|
10
|
-
"@typescript-eslint/parser": "
|
|
11
|
-
"eslint": "
|
|
12
|
-
"eslint-config-prettier": "
|
|
13
|
-
"eslint-import-resolver-typescript": "
|
|
14
|
-
"eslint-plugin-import": "
|
|
15
|
-
"eslint-plugin-jest": "
|
|
16
|
-
"eslint-plugin-jsx-a11y": "
|
|
17
|
-
"eslint-plugin-node": "
|
|
18
|
-
"eslint-plugin-prettier": "
|
|
19
|
-
"eslint-plugin-react": "
|
|
20
|
-
"eslint-plugin-react-hooks": "
|
|
21
|
-
"eslint-plugin-simple-import-sort": "
|
|
22
|
-
"eslint-plugin-sonarjs": "
|
|
23
|
-
"eslint-plugin-sort-destructure-keys": "
|
|
24
|
-
"eslint-plugin-typescript-sort-keys": "
|
|
25
|
-
"prettier": "
|
|
26
|
-
"semantic-release": "
|
|
27
|
-
"semantic-release-github-pullrequest": "^1.3.0"
|
|
5
|
+
"@commitlint/cli": "17.4.1",
|
|
6
|
+
"@open-turo/commitlint-config-conventional": "1.0.4",
|
|
7
|
+
"@open-turo/eslint-config-typescript": "2.6.0",
|
|
8
|
+
"@open-turo/semantic-release-config": "1.0.1",
|
|
9
|
+
"@typescript-eslint/eslint-plugin": "5.48.1",
|
|
10
|
+
"@typescript-eslint/parser": "5.48.1",
|
|
11
|
+
"eslint": "8.31.0",
|
|
12
|
+
"eslint-config-prettier": "8.6.0",
|
|
13
|
+
"eslint-import-resolver-typescript": "3.5.2",
|
|
14
|
+
"eslint-plugin-import": "2.26.0",
|
|
15
|
+
"eslint-plugin-jest": "27.2.1",
|
|
16
|
+
"eslint-plugin-jsx-a11y": "6.7.0",
|
|
17
|
+
"eslint-plugin-node": "11.1.0",
|
|
18
|
+
"eslint-plugin-prettier": "4.2.1",
|
|
19
|
+
"eslint-plugin-react": "7.31.11",
|
|
20
|
+
"eslint-plugin-react-hooks": "4.6.0",
|
|
21
|
+
"eslint-plugin-simple-import-sort": "8.0.0",
|
|
22
|
+
"eslint-plugin-sonarjs": "0.18.0",
|
|
23
|
+
"eslint-plugin-sort-destructure-keys": "1.4.0",
|
|
24
|
+
"eslint-plugin-typescript-sort-keys": "2.1.0",
|
|
25
|
+
"prettier": "2.8.2",
|
|
26
|
+
"semantic-release": "19.0.5"
|
|
28
27
|
},
|
|
29
28
|
"engines": {
|
|
30
29
|
"node": ">= 14"
|
|
@@ -48,7 +47,7 @@
|
|
|
48
47
|
"eslint-plugin-react": "^7.29.4",
|
|
49
48
|
"eslint-plugin-react-hooks": "^4.4.0",
|
|
50
49
|
"eslint-plugin-simple-import-sort": "^8.0.0",
|
|
51
|
-
"eslint-plugin-sonarjs": "^0.
|
|
50
|
+
"eslint-plugin-sonarjs": "^0.18.0",
|
|
52
51
|
"eslint-plugin-sort-destructure-keys": "^1.4.0",
|
|
53
52
|
"eslint-plugin-typescript-sort-keys": "^2.1.0",
|
|
54
53
|
"prettier": "^2.5.1"
|
|
@@ -57,5 +56,5 @@
|
|
|
57
56
|
"access": "public"
|
|
58
57
|
},
|
|
59
58
|
"repository": "https://github.com/open-turo/eslint-config-react",
|
|
60
|
-
"version": "1.3.
|
|
59
|
+
"version": "1.3.3"
|
|
61
60
|
}
|
|
Binary file
|