@fullstacksjs/eslint-config 13.13.2 → 13.13.3

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.
@@ -25,9 +25,8 @@ function stylistic() {
25
25
  component: true,
26
26
  html: true
27
27
  }],
28
- '@stylistic/no-mixed-operators': ['error', {
29
- allowSamePrecedence: true
30
- }],
28
+ '@stylistic/no-mixed-operators': 'off',
29
+ //conflict with prettier
31
30
  '@stylistic/padding-line-between-statements': ['warn', {
32
31
  blankLine: 'always',
33
32
  prev: ['case', 'default'],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fullstacksjs/eslint-config",
3
- "version": "13.13.2",
3
+ "version": "13.13.3",
4
4
  "license": "MIT",
5
5
  "author": "fullstacks <fullstacksjs@gmail.com>",
6
6
  "description": "fullstacks eslint config",
@@ -9,7 +9,8 @@
9
9
  "url": "git+https://github.com/fullstacksjs/eslint-config.git"
10
10
  },
11
11
  "publishConfig": {
12
- "registry": "https://registry.npmjs.org"
12
+ "access": "public",
13
+ "provenance": true
13
14
  },
14
15
  "files": [
15
16
  "src",
@@ -16,7 +16,7 @@ function stylistic() {
16
16
  html: true,
17
17
  },
18
18
  ],
19
- '@stylistic/no-mixed-operators': ['error', { allowSamePrecedence: true }],
19
+ '@stylistic/no-mixed-operators': 'off', //conflict with prettier
20
20
  '@stylistic/padding-line-between-statements': [
21
21
  'warn',
22
22
  { blankLine: 'always', prev: ['case', 'default'], next: '*' },