@cabloy/lint 5.0.5 → 5.0.6

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/common/rules.js +3 -2
  2. package/package.json +1 -1
package/common/rules.js CHANGED
@@ -62,8 +62,8 @@ export const rules = {
62
62
  'newline-per-chained-call': [0],
63
63
  'prefer-rest-params': 'off',
64
64
  // 'no-setter-return': 'off', // no effect for typescript check
65
- 'ts/method-signature-style': 'off',
66
- 'ts/no-redeclare': 'off',
65
+ '@typescript-eslint/method-signature-style': 'off',
66
+ '@typescript-eslint/no-redeclare': 'off',
67
67
  '@typescript-eslint/consistent-type-imports': ['error', { fixStyle: 'separate-type-imports', prefer: 'type-imports' }],
68
68
  '@typescript-eslint/explicit-function-return-type': 'off',
69
69
  '@typescript-eslint/no-namespace': 'off',
@@ -137,4 +137,5 @@ export const rules = {
137
137
  flatTernaryExpressions: true,
138
138
  offsetTernaryExpressions: true,
139
139
  }],
140
+ '@stylistic/jsx-closing-tag-location': 'off',
140
141
  };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@cabloy/lint",
3
3
  "type": "module",
4
- "version": "5.0.5",
4
+ "version": "5.0.6",
5
5
  "description": "Node Style Guide for Cabloy.",
6
6
  "publishConfig": {
7
7
  "access": "public"