@tpluscode/eslint-config 0.6.0 → 0.6.2

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.
Files changed (3) hide show
  1. package/CHANGELOG.md +12 -0
  2. package/js.js +4 -1
  3. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.6.2
4
+
5
+ ### Patch Changes
6
+
7
+ - bc2bc05: Relax some mocha rules
8
+
9
+ ## 0.6.1
10
+
11
+ ### Patch Changes
12
+
13
+ - 7ed97bd: Mocha was added dev dependency instead of prod dependency
14
+
3
15
  ## 0.6.0
4
16
 
5
17
  ### Minor Changes
package/js.js CHANGED
@@ -57,7 +57,10 @@ module.exports = {
57
57
  'unused-imports/no-unused-vars': [
58
58
  'warn',
59
59
  { vars: 'all', varsIgnorePattern: '^_', args: 'after-used', argsIgnorePattern: '^_' }
60
- ]
60
+ ],
61
+ 'mocha/no-sibling-hooks': 'off',
62
+ 'mocha/no-setup-in-describe': 'warn',
63
+ 'mocha/max-top-level-suites': 'warn'
61
64
  },
62
65
  overrides: [
63
66
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tpluscode/eslint-config",
3
- "version": "0.6.0",
3
+ "version": "0.6.2",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -12,6 +12,7 @@
12
12
  "eslint": ">=6",
13
13
  "eslint-config-standard": ">=11",
14
14
  "eslint-plugin-import": ">=2",
15
+ "eslint-plugin-mocha": "^10.5.0",
15
16
  "eslint-plugin-n": ">=15",
16
17
  "eslint-plugin-node": ">=11",
17
18
  "eslint-plugin-promise": ">=6",
@@ -30,7 +31,6 @@
30
31
  "eslint": "^8",
31
32
  "eslint-config-standard": "^17.1.0",
32
33
  "eslint-plugin-import": "^2.29.1",
33
- "eslint-plugin-mocha": "^10.5.0",
34
34
  "eslint-plugin-node": "^11.1.0",
35
35
  "eslint-plugin-promise": "^6.2.0",
36
36
  "eslint-plugin-rdf": "^1.0",