@map-colonies/eslint-config 2.2.1 → 3.1.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/.licrc ADDED
@@ -0,0 +1,19 @@
1
+ [licenses]
2
+ # This indicates which are the only licenses that Licensebat will accept.
3
+ # The rest will be flagged as not allowed.
4
+ #accepted = ["MIT", "MSC", "BSD"]
5
+ # This will indicate which licenses are not accepted.
6
+ # The rest will be accepted, except for the unknown licenses or dependencies without licenses.
7
+ unaccepted = ["LGPL"]
8
+ # Note that only one of the previous options can be enabled at once.
9
+ # If both of them are informed, only accepted will be considered.
10
+
11
+ [dependencies]
12
+ # This will allow users to flag some dependencies so that Licensebat will not check for their license.
13
+ ignored=["ignored_dep1", "ignored_dep2"]
14
+
15
+ [behavior]
16
+ # False by default, if true, it will only run the checks when one of the dependency files or the .licrc file has been modified.
17
+ run_only_on_dependency_modification = true
18
+ # False by default, if true, it will never block the build.
19
+ do_not_block_pr = true
package/CHANGELOG.md CHANGED
@@ -2,6 +2,24 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
+ ## [3.1.0](https://github.com/MapColonies/eslint-config/compare/v3.0.1...v3.1.0) (2022-04-27)
6
+
7
+ ### [3.0.1](https://github.com/MapColonies/eslint-config/compare/v3.0.0...v3.0.1) (2021-10-19)
8
+
9
+
10
+ ### Bug Fixes
11
+
12
+ * merged prettier/[@typescript-eslint](https://github.com/typescript-eslint) -> prettier ([f34d9dc](https://github.com/MapColonies/eslint-config/commit/f34d9dcf7665c66119fe4865bda964b9492789e0))
13
+
14
+ ## [3.0.0](https://github.com/MapColonies/eslint-config/compare/v2.2.1...v3.0.0) (2021-10-19)
15
+
16
+
17
+ ### ⚠ BREAKING CHANGES
18
+
19
+ * upgrade to eslint v8
20
+
21
+ * upgrade to eslint v8 ([ff2b536](https://github.com/MapColonies/eslint-config/commit/ff2b5367c1bd366ca1513345cacae16a20af8fda))
22
+
5
23
  ### [2.2.1](https://github.com/MapColonies/eslint-config/compare/v2.2.0...v2.2.1) (2021-06-06)
6
24
 
7
25
  ## [2.2.0](https://github.com/MapColonies/eslint-config/compare/v2.1.0...v2.2.0) (2021-02-01)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@map-colonies/eslint-config",
3
- "version": "2.2.1",
3
+ "version": "3.1.0",
4
4
  "description": "eslint configs for map colonies organization",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -28,22 +28,22 @@
28
28
  }
29
29
  },
30
30
  "peerDependencies": {
31
- "eslint": "^7.0.0"
31
+ "eslint": "^8.0.1"
32
32
  },
33
33
  "dependencies": {
34
- "@typescript-eslint/eslint-plugin": "4.10.0",
35
- "@typescript-eslint/parser": "4.10.0",
36
- "eslint-config-prettier": "^7.0.0",
34
+ "@typescript-eslint/eslint-plugin": "5.21.0",
35
+ "@typescript-eslint/parser": "5.21.0",
36
+ "eslint-config-prettier": "^8.5.0",
37
37
  "eslint-config-react-app": "^6.0.0",
38
- "eslint-plugin-import": "^2.22.0",
39
- "eslint-plugin-jest": "^24.0.0"
38
+ "eslint-plugin-import": "^2.26.0",
39
+ "eslint-plugin-jest": "^26.1.5"
40
40
  },
41
41
  "devDependencies": {
42
- "@commitlint/cli": "^9.1.1",
43
- "@commitlint/config-conventional": "^9.1.1",
44
- "commitlint": "^9.1.0",
45
- "cz-conventional-changelog": "^3.2.0",
46
- "husky": "^4.2.5",
47
- "standard-version": "^8.0.2"
42
+ "@commitlint/cli": "^16.2.3",
43
+ "@commitlint/config-conventional": "^16.2.1",
44
+ "commitlint": "^16.2.3",
45
+ "cz-conventional-changelog": "^3.3.0",
46
+ "husky": "^7.0.4",
47
+ "standard-version": "^9.3.2"
48
48
  }
49
49
  }
package/ts-base.js CHANGED
@@ -43,8 +43,7 @@ module.exports = {
43
43
  'eslint:recommended',
44
44
  'plugin:@typescript-eslint/recommended',
45
45
  'plugin:@typescript-eslint/recommended-requiring-type-checking',
46
- 'prettier',
47
- 'prettier/@typescript-eslint',
46
+ "prettier"
48
47
  ],
49
48
  plugins: ['import', '@typescript-eslint'],
50
49
  parser: '@typescript-eslint/parser',