@cabify/eslint-config 1.1.2-beta.0 → 1.2.0

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/CHANGELOG.md CHANGED
@@ -7,23 +7,33 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## Added
11
+
12
+ - Support for Typescript 4.9.
13
+
14
+ ## [1.1.2] - 2022-10-24
15
+
16
+ ### Changed
17
+
18
+ - Bump dependencies.
19
+
10
20
  ## [1.0.3] - 2022-07-22
11
21
 
12
22
  ### Changed
13
23
 
14
- - Bump dependencies
24
+ - Bump dependencies.
15
25
 
16
26
  ## [1.0.2] - 2021-11-25
17
27
 
18
28
  ### Changed
19
29
 
20
- - Bump dependencies
30
+ - Bump dependencies.
21
31
 
22
32
  ## [1.0.1] - 2021-11-15
23
33
 
24
34
  ### Changed
25
35
 
26
- - Bump dependencies
36
+ - Bump dependencies.
27
37
 
28
38
  ## [1.0.0] - 2021-10-27
29
39
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cabify/eslint-config",
3
- "version": "1.1.2-beta.0",
3
+ "version": "1.2.0",
4
4
  "description": "ESLint config for Cabify Javascript projects",
5
5
  "scripts": {
6
6
  "build": "echo 'No build to perform'",
@@ -40,16 +40,16 @@
40
40
  "./recommended": "./recommended.js"
41
41
  },
42
42
  "dependencies": {
43
- "@typescript-eslint/eslint-plugin": "^5.40.1",
44
- "@typescript-eslint/parser": "^5.40.1",
43
+ "@typescript-eslint/eslint-plugin": "^5.44.0",
44
+ "@typescript-eslint/parser": "^5.44.0",
45
45
  "confusing-browser-globals": "^1.0.10",
46
46
  "eslint-config-prettier": "^8.3.0",
47
47
  "eslint-plugin-import": "^2.25.3",
48
- "eslint-plugin-jest": "^27.1.3",
48
+ "eslint-plugin-jest": "^27.1.6",
49
49
  "eslint-plugin-jsx-a11y": "^6.5.1",
50
50
  "eslint-plugin-lodash": "^7.3.0",
51
51
  "eslint-plugin-prettier": "^4.0.0",
52
- "eslint-plugin-react": "^7.31.10",
52
+ "eslint-plugin-react": "^7.31.11",
53
53
  "eslint-plugin-react-hooks": "^4.3.0",
54
54
  "eslint-plugin-simple-import-sort": "^8.0.0"
55
55
  },
@@ -58,8 +58,8 @@
58
58
  "prettier": ">= 2.2.1"
59
59
  },
60
60
  "devDependencies": {
61
- "prettier": "2.7.1",
62
- "eslint": "8.26.0"
61
+ "prettier": "2.8.0",
62
+ "eslint": "8.28.0"
63
63
  },
64
64
  "publishConfig": {
65
65
  "access": "public"
package/.eslintignore DELETED
@@ -1,2 +0,0 @@
1
- /node_modules
2
- *.d.ts
@@ -1,12 +0,0 @@
1
- # Basic dependabot.yml file with
2
-
3
- version: 2
4
- updates:
5
- # Enable version updates for npm
6
- - package-ecosystem: 'npm'
7
- # Look for `package.json` and `lock` files in the `root` directory
8
- directory: '/'
9
- # Check the npm registry for updates every day (weekdays)
10
- schedule:
11
- interval: 'weekly'
12
- versioning-strategy: increase
@@ -1,13 +0,0 @@
1
- name: Publish package
2
-
3
- on:
4
- release:
5
- types: [created]
6
-
7
- jobs:
8
- publish-npm:
9
- uses: cabify/javascript-actions/.github/workflows/npm_publish.yml@main
10
- with:
11
- tag: ${{ contains(github.ref_name,'beta') && 'beta' || 'latest' }}
12
- secrets:
13
- token: ${{ secrets.NPM_TOKEN }}
@@ -1,7 +0,0 @@
1
- name: Tests
2
-
3
- on: [push]
4
-
5
- jobs:
6
- test:
7
- uses: cabify/javascript-actions/.github/workflows/tests.yml@main
package/.prettierignore DELETED
@@ -1,2 +0,0 @@
1
- /node_modules
2
- *.d.ts
package/.prettierrc DELETED
@@ -1,16 +0,0 @@
1
- {
2
- "singleQuote": true,
3
- "arrowParens": "always",
4
- "trailingComma": "all",
5
- "bracketSpacing": true,
6
- "useTabs": false,
7
- "tabWidth": 2,
8
- "overrides": [
9
- {
10
- "files": "*.scss",
11
- "options": {
12
- "singleQuote": false
13
- }
14
- }
15
- ]
16
- }