@enormora/eslint-config-ava 0.0.35 → 0.0.37

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/package.json CHANGED
@@ -4,8 +4,8 @@
4
4
  "Christian Rackerseder <github@echooff.de>"
5
5
  ],
6
6
  "dependencies": {
7
- "@enormora/eslint-config-test-base": "0.0.3",
8
- "eslint-plugin-ava": "16.0.1"
7
+ "@enormora/eslint-config-test-base": "0.0.5",
8
+ "eslint-plugin-ava": "17.0.0"
9
9
  },
10
10
  "description": "Enormora’s ESLint ava configuration",
11
11
  "exports": {
@@ -20,5 +20,5 @@
20
20
  "url": "git://github.com/enormora/eslint-config.git"
21
21
  },
22
22
  "type": "module",
23
- "version": "0.0.35"
23
+ "version": "0.0.37"
24
24
  }
@@ -16,7 +16,7 @@ export const avaConfig = {
16
16
  'ava/max-asserts': 'off',
17
17
  'ava/no-async-fn-without-await': 'error',
18
18
  'ava/no-ava-in-dependencies': 'error',
19
- 'ava/no-commented-tests': 'warn',
19
+ 'ava/no-commented-tests': 'error',
20
20
  'ava/no-conditional-assertion': 'error',
21
21
  'ava/no-duplicate-hooks': 'error',
22
22
  'ava/no-identical-title': 'error',
@@ -32,7 +32,7 @@ export const avaConfig = {
32
32
  'ava/no-skip-assert': 'error',
33
33
  'ava/no-skip-test': 'error',
34
34
  'ava/no-todo-implementation': 'error',
35
- 'ava/no-todo-test': 'warn',
35
+ 'ava/no-todo-test': 'error',
36
36
  'ava/no-useless-t-pass': 'error',
37
37
  'ava/prefer-async-await': 'error',
38
38
  'ava/prefer-power-assert': 'off',
package/readme.md CHANGED
@@ -15,17 +15,17 @@ npm install --save-dev @enormora/eslint-config-base @enormora/eslint-config-ava
15
15
  Create an ESLint configuration file (e.g., `eslint.config.js`) in your project and add the base and node config to the configuration array:
16
16
 
17
17
  ```javascript
18
- import { avaConfig } from "@enormora/eslint-config-ava";
19
- import { baseConfig } from "@enormora/eslint-config-base";
18
+ import { avaConfig } from '@enormora/eslint-config-ava';
19
+ import { baseConfig } from '@enormora/eslint-config-base';
20
20
 
21
21
  export default [
22
- {
23
- ignores: ["dist/**/*"],
24
- },
25
- ...baseConfig,
26
- {
27
- ...avaConfig,
28
- files: ["**/*.test.js"],
29
- },
22
+ {
23
+ ignores: [ 'dist/**/*' ]
24
+ },
25
+ ...baseConfig,
26
+ {
27
+ ...avaConfig,
28
+ files: [ '**/*.test.js' ]
29
+ }
30
30
  ];
31
31
  ```
package/sbom.cdx.json CHANGED
@@ -9,59 +9,59 @@
9
9
  {
10
10
  "type": "application",
11
11
  "name": "packtory",
12
- "version": "0.0.15"
12
+ "version": "0.0.32"
13
13
  }
14
14
  ]
15
15
  },
16
16
  "component": {
17
17
  "type": "library",
18
18
  "name": "@enormora/eslint-config-ava",
19
- "version": "0.0.35",
20
- "bom-ref": "pkg:npm/@enormora/eslint-config-ava@0.0.35",
21
- "purl": "pkg:npm/@enormora/eslint-config-ava@0.0.35"
19
+ "version": "0.0.37",
20
+ "bom-ref": "pkg:npm/@enormora/eslint-config-ava@0.0.37",
21
+ "purl": "pkg:npm/@enormora/eslint-config-ava@0.0.37"
22
22
  }
23
23
  },
24
24
  "components": [
25
25
  {
26
26
  "type": "library",
27
27
  "name": "@enormora/eslint-config-test-base",
28
- "version": "0.0.3",
29
- "bom-ref": "pkg:npm/@enormora/eslint-config-test-base@0.0.3",
28
+ "version": "0.0.5",
29
+ "bom-ref": "pkg:npm/@enormora/eslint-config-test-base@0.0.5",
30
30
  "scope": "required",
31
31
  "licenses": [
32
32
  {
33
33
  "expression": "MIT"
34
34
  }
35
35
  ],
36
- "purl": "pkg:npm/@enormora/eslint-config-test-base@0.0.3"
36
+ "purl": "pkg:npm/@enormora/eslint-config-test-base@0.0.5"
37
37
  },
38
38
  {
39
39
  "type": "library",
40
40
  "name": "eslint-plugin-ava",
41
- "version": "16.0.1",
42
- "bom-ref": "pkg:npm/eslint-plugin-ava@16.0.1",
41
+ "version": "17.0.0",
42
+ "bom-ref": "pkg:npm/eslint-plugin-ava@17.0.0",
43
43
  "scope": "required",
44
44
  "licenses": [
45
45
  {
46
46
  "expression": "MIT"
47
47
  }
48
48
  ],
49
- "purl": "pkg:npm/eslint-plugin-ava@16.0.1"
49
+ "purl": "pkg:npm/eslint-plugin-ava@17.0.0"
50
50
  }
51
51
  ],
52
52
  "dependencies": [
53
53
  {
54
- "ref": "pkg:npm/@enormora/eslint-config-ava@0.0.35",
54
+ "ref": "pkg:npm/@enormora/eslint-config-ava@0.0.37",
55
55
  "dependsOn": [
56
- "pkg:npm/@enormora/eslint-config-test-base@0.0.3",
57
- "pkg:npm/eslint-plugin-ava@16.0.1"
56
+ "pkg:npm/@enormora/eslint-config-test-base@0.0.5",
57
+ "pkg:npm/eslint-plugin-ava@17.0.0"
58
58
  ]
59
59
  },
60
60
  {
61
- "ref": "pkg:npm/@enormora/eslint-config-test-base@0.0.3"
61
+ "ref": "pkg:npm/@enormora/eslint-config-test-base@0.0.5"
62
62
  },
63
63
  {
64
- "ref": "pkg:npm/eslint-plugin-ava@16.0.1"
64
+ "ref": "pkg:npm/eslint-plugin-ava@17.0.0"
65
65
  }
66
66
  ]
67
67
  }