@open-turo/eslint-config-typescript 5.0.2 → 6.0.1
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.
|
@@ -4,6 +4,17 @@ on:
|
|
|
4
4
|
push:
|
|
5
5
|
|
|
6
6
|
jobs:
|
|
7
|
+
release-notes:
|
|
8
|
+
name: Release notes preview
|
|
9
|
+
runs-on: ubuntu-latest
|
|
10
|
+
if: github.ref != 'refs/heads/main'
|
|
11
|
+
steps:
|
|
12
|
+
- uses: open-turo/actions-release/release-notes-preview@v2
|
|
13
|
+
with:
|
|
14
|
+
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
15
|
+
env:
|
|
16
|
+
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
|
|
17
|
+
|
|
7
18
|
lint:
|
|
8
19
|
name: Lint
|
|
9
20
|
runs-on: ubuntu-latest
|
package/.pre-commit-config.yaml
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
repos:
|
|
2
2
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
|
3
|
-
rev: v4.
|
|
3
|
+
rev: v4.5.0
|
|
4
4
|
hooks:
|
|
5
5
|
- id: check-json
|
|
6
6
|
- id: check-yaml
|
|
7
7
|
- id: end-of-file-fixer
|
|
8
8
|
- id: trailing-whitespace
|
|
9
9
|
- repo: https://github.com/pre-commit/mirrors-prettier
|
|
10
|
-
rev: v3.0.
|
|
10
|
+
rev: v3.0.3
|
|
11
11
|
hooks:
|
|
12
12
|
- id: prettier
|
|
13
13
|
stages: [commit]
|
|
@@ -18,6 +18,6 @@ repos:
|
|
|
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.26
|
|
22
22
|
hooks:
|
|
23
23
|
- id: actionlint
|
package/index.js
CHANGED
|
@@ -56,7 +56,7 @@ module.exports = {
|
|
|
56
56
|
"import/no-default-export": "error",
|
|
57
57
|
"import/no-extraneous-dependencies": [
|
|
58
58
|
"error",
|
|
59
|
-
{ devDependencies: ["test
|
|
59
|
+
{ devDependencies: ["test/**"] },
|
|
60
60
|
],
|
|
61
61
|
"import/prefer-default-export": "off",
|
|
62
62
|
"jest/no-jest-import": "off",
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -2,25 +2,25 @@
|
|
|
2
2
|
"author": "Turo engineering",
|
|
3
3
|
"description": "Turo eslint configuration for typescript",
|
|
4
4
|
"devDependencies": {
|
|
5
|
-
"@commitlint/cli": "17.
|
|
5
|
+
"@commitlint/cli": "17.8.1",
|
|
6
6
|
"@open-turo/commitlint-config-conventional": "1.1.0",
|
|
7
|
-
"@open-turo/semantic-release-config": "
|
|
8
|
-
"@typescript-eslint/eslint-plugin": "
|
|
9
|
-
"@typescript-eslint/parser": "
|
|
10
|
-
"eslint": "8.
|
|
7
|
+
"@open-turo/semantic-release-config": "4.0.3",
|
|
8
|
+
"@typescript-eslint/eslint-plugin": "6.9.0",
|
|
9
|
+
"@typescript-eslint/parser": "6.9.0",
|
|
10
|
+
"eslint": "8.52.0",
|
|
11
11
|
"eslint-config-prettier": "9.0.0",
|
|
12
|
-
"eslint-import-resolver-typescript": "3.6.
|
|
13
|
-
"eslint-plugin-import": "2.
|
|
14
|
-
"eslint-plugin-jest": "27.
|
|
12
|
+
"eslint-import-resolver-typescript": "3.6.1",
|
|
13
|
+
"eslint-plugin-import": "2.29.0",
|
|
14
|
+
"eslint-plugin-jest": "27.4.3",
|
|
15
15
|
"eslint-plugin-node": "11.1.0",
|
|
16
|
-
"eslint-plugin-prettier": "5.0.
|
|
16
|
+
"eslint-plugin-prettier": "5.0.1",
|
|
17
17
|
"eslint-plugin-simple-import-sort": "10.0.0",
|
|
18
18
|
"eslint-plugin-sonarjs": "0.21.0",
|
|
19
19
|
"eslint-plugin-sort-destructure-keys": "1.5.0",
|
|
20
|
-
"eslint-plugin-typescript-sort-keys": "
|
|
20
|
+
"eslint-plugin-typescript-sort-keys": "3.1.0",
|
|
21
21
|
"eslint-plugin-unicorn": "48.0.1",
|
|
22
|
-
"prettier": "3.0.
|
|
23
|
-
"semantic-release": "21.1.
|
|
22
|
+
"prettier": "3.0.3",
|
|
23
|
+
"semantic-release": "21.1.2"
|
|
24
24
|
},
|
|
25
25
|
"engines": {
|
|
26
26
|
"node": ">= 14"
|
|
@@ -33,10 +33,10 @@
|
|
|
33
33
|
"release": "semantic-release"
|
|
34
34
|
},
|
|
35
35
|
"peerDependencies": {
|
|
36
|
-
"@typescript-eslint/eslint-plugin": "^
|
|
37
|
-
"@typescript-eslint/parser": "^
|
|
36
|
+
"@typescript-eslint/eslint-plugin": "^6.0.0",
|
|
37
|
+
"@typescript-eslint/parser": "^6.0.0",
|
|
38
38
|
"eslint": "^8.18.0",
|
|
39
|
-
"eslint-config-prettier": "^
|
|
39
|
+
"eslint-config-prettier": "^9.0.0",
|
|
40
40
|
"eslint-import-resolver-typescript": "^3.3.0",
|
|
41
41
|
"eslint-plugin-import": "^2.25.4",
|
|
42
42
|
"eslint-plugin-jest": "^27.0.1",
|
|
@@ -44,9 +44,9 @@
|
|
|
44
44
|
"eslint-plugin-node": "^11.1.0",
|
|
45
45
|
"eslint-plugin-prettier": "^5.0.0",
|
|
46
46
|
"eslint-plugin-simple-import-sort": "^10.0.0",
|
|
47
|
-
"eslint-plugin-sonarjs": "^0.
|
|
47
|
+
"eslint-plugin-sonarjs": "^0.21.0",
|
|
48
48
|
"eslint-plugin-sort-destructure-keys": "^1.4.0",
|
|
49
|
-
"eslint-plugin-typescript-sort-keys": "^
|
|
49
|
+
"eslint-plugin-typescript-sort-keys": "^3.0.0",
|
|
50
50
|
"prettier": "^3.0.0"
|
|
51
51
|
},
|
|
52
52
|
"optionalDependencies": {
|
|
@@ -56,5 +56,5 @@
|
|
|
56
56
|
"access": "public"
|
|
57
57
|
},
|
|
58
58
|
"repository": "https://github.com/open-turo/eslint-config-typescript",
|
|
59
|
-
"version": "
|
|
59
|
+
"version": "6.0.1"
|
|
60
60
|
}
|
|
Binary file
|