eslint-config-seekingalpha-base 6.6.2 → 6.6.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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Change Log
2
2
 
3
+ ## 6.6.3 - 2023-05-11
4
+
5
+ - [breaking] disable `unicorn/prefer-at` rule
6
+
3
7
  ## 6.6.2 - 2023-05-10
4
8
 
5
9
  - [breaking] enable `unicorn/prefer-object-from-entries` rule
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eslint-config-seekingalpha-base",
3
- "version": "6.6.2",
3
+ "version": "6.6.3",
4
4
  "description": "SeekingAlpha's sharable base ESLint config",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -217,7 +217,7 @@ module.exports = {
217
217
  'unicorn/prefer-blob-reading-methods': 'error',
218
218
 
219
219
  // https://github.com/sindresorhus/eslint-plugin-unicorn/blob/main/docs/rules/prefer-at.md
220
- 'unicorn/prefer-at': 'error',
220
+ 'unicorn/prefer-at': 'off',
221
221
 
222
222
  // https://github.com/sindresorhus/eslint-plugin-unicorn/blob/main/docs/rules/prefer-code-point.md
223
223
  'unicorn/prefer-code-point': 'error',