@mediatool/eslint-config-mediatool 0.1.9 → 0.1.10

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 (2) hide show
  1. package/.eslintrc.js +13 -4
  2. package/package.json +1 -1
package/.eslintrc.js CHANGED
@@ -10,18 +10,27 @@ module.exports = {
10
10
  'imports': 'always-multiline',
11
11
  'exports': 'always-multiline',
12
12
  'functions': 'never',
13
- }],
13
+ } ],
14
+ 'func-names': 0,
14
15
  'function-paren-newline': 'off',
15
16
  'global-require': 0,
16
17
  'import/extensions': 0,
17
- 'func-names': 0,
18
+ 'import/no-extraneous-dependencies': [
19
+ 'error',
20
+ {
21
+ 'devDependencies': [
22
+ '**/features/**/*.js',
23
+ '**/test/*.js'
24
+ ]
25
+ }
26
+ ],
27
+ 'jsx-a11y/anchor-is-valid': 'off',
18
28
  'jsx-a11y/click-events-have-key-events': 'off', // Consider enabling later
19
29
  'jsx-a11y/interactive-supports-focus': 'off', // Consider enabling later
30
+ 'jsx-a11y/label-has-for': 'off',
20
31
  'jsx-a11y/no-autofocus': 'off',
21
32
  'jsx-a11y/no-noninteractive-element-interactions': 'off',
22
33
  'jsx-a11y/no-static-element-interactions': 'off', // Consider enabling later
23
- 'jsx-a11y/anchor-is-valid': 'off',
24
- 'jsx-a11y/label-has-for': 'off',
25
34
  'no-nested-ternary': 'off',
26
35
  'no-underscore-dangle': 0,
27
36
  'no-unused-vars': [ 'error', {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mediatool/eslint-config-mediatool",
3
- "version": "0.1.9",
3
+ "version": "0.1.10",
4
4
  "main": ".eslintrc.js",
5
5
  "scripts": {
6
6
  "test": "eslint examples/*.*"