@newrelic/eslint-config 0.0.3 → 0.1.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.
Files changed (3) hide show
  1. package/CHANGELOG.md +19 -0
  2. package/index.js +3 -0
  3. package/package.json +1 -1
package/CHANGELOG.md ADDED
@@ -0,0 +1,19 @@
1
+ ### v0.1.0 (2022-09-19)
2
+
3
+ * Added overrides to disable the ESM rules of no unpublished or extraneous import.
4
+
5
+ ### v0.0.4 (2022-01-05)
6
+
7
+ * Added workflow to automatically add issues/Prs to Node.js Engineering Board
8
+
9
+ * Added CHANGELOG.md to track this file, so meta.
10
+
11
+ * Added workflow to automatically prepare releases.
12
+
13
+ ### v0.0.3 (2021-09-09):
14
+
15
+ * Added prefer-const and no-var rules
16
+
17
+ ### v0.0.2 (2021-08-17):
18
+
19
+ * Initial release of shared eslint rules for the Node.js Agent Team
package/index.js CHANGED
@@ -108,6 +108,9 @@ module.exports = {
108
108
  'node/no-extraneous-require': 'off',
109
109
  'node/no-missing-require': 'off',
110
110
  'node/no-unpublished-require': 'off',
111
+ 'node/no-unpublished-import': 'off',
112
+ 'node/no-extraneous-import': 'off',
113
+ 'node/no-missing-import': 'off',
111
114
  }
112
115
  },
113
116
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@newrelic/eslint-config",
3
- "version": "0.0.3",
3
+ "version": "0.1.0",
4
4
  "description": "Eslint ruleset for New Relic Node.js agent",
5
5
  "main": "index.js",
6
6
  "scripts": {