@cabify/eslint-config 1.1.2-beta.0 → 1.1.3-beta.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,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ - Breaking change in how type imports are sorted [eslint-plugin-simple-import-sort@10.0.0](https://github.com/lydell/eslint-plugin-simple-import-sort/blob/main/CHANGELOG.md#version-1000-2023-01-27)
11
+
12
+ ## [1.1.2] - 2022-10-24
13
+
14
+ ### Changed
15
+
16
+ - Bump dependencies
17
+
10
18
  ## [1.0.3] - 2022-07-22
11
19
 
12
20
  ### Changed
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.1.3-beta.0",
4
4
  "description": "ESLint config for Cabify Javascript projects",
5
5
  "scripts": {
6
6
  "build": "echo 'No build to perform'",
@@ -40,26 +40,26 @@
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.59.11",
44
+ "@typescript-eslint/parser": "^5.59.11",
45
45
  "confusing-browser-globals": "^1.0.10",
46
- "eslint-config-prettier": "^8.3.0",
47
- "eslint-plugin-import": "^2.25.3",
48
- "eslint-plugin-jest": "^27.1.3",
49
- "eslint-plugin-jsx-a11y": "^6.5.1",
46
+ "eslint-config-prettier": "^8.8.0",
47
+ "eslint-plugin-import": "^2.27.5",
48
+ "eslint-plugin-jest": "^27.2.1",
49
+ "eslint-plugin-jsx-a11y": "^6.7.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.32.2",
53
53
  "eslint-plugin-react-hooks": "^4.3.0",
54
- "eslint-plugin-simple-import-sort": "^8.0.0"
54
+ "eslint-plugin-simple-import-sort": "^10.0.0"
55
55
  },
56
56
  "peerDependencies": {
57
57
  "eslint": ">= 8.0.1",
58
58
  "prettier": ">= 2.2.1"
59
59
  },
60
60
  "devDependencies": {
61
- "prettier": "2.7.1",
62
- "eslint": "8.26.0"
61
+ "eslint": "8.43.0",
62
+ "prettier": "2.8.8"
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
- }