@newrelic/eslint-config 0.6.0 → 0.7.0
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 +7 -0
- package/index.js +4 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
### v0.7.0 (2026-02-11)
|
|
2
|
+
|
|
3
|
+
#### Miscellaneous chores
|
|
4
|
+
|
|
5
|
+
* Added accessor-pairs rule ([#43](https://github.com/newrelic/eslint-config-newrelic/pull/43)) ([50de65a](https://github.com/newrelic/eslint-config-newrelic/commit/50de65a4c5f48855268db54c939ff53b97b0fb30))
|
|
6
|
+
* Update release workflow ([#42](https://github.com/newrelic/eslint-config-newrelic/pull/42)) ([2d867ff](https://github.com/newrelic/eslint-config-newrelic/commit/2d867ff58f4fc5dbe5033da0b7cdedcec40bb0c4))
|
|
7
|
+
|
|
1
8
|
### v0.6.0 (2025-08-12)
|
|
2
9
|
|
|
3
10
|
#### Miscellaneous chores
|
package/index.js
CHANGED
|
@@ -47,6 +47,10 @@ const baselineNewRelicConfig = {
|
|
|
47
47
|
// to read:
|
|
48
48
|
'no-unneeded-ternary': 'off',
|
|
49
49
|
|
|
50
|
+
// There are many cases where we need a getter or setter but not the
|
|
51
|
+
// other:
|
|
52
|
+
'accessor-pairs': 'off',
|
|
53
|
+
|
|
50
54
|
// There are times we'd rather have import statements close to the
|
|
51
55
|
// thing that needed them:
|
|
52
56
|
'import-x/first': 'off',
|