@rebeccastevens/eslint-config 1.6.4 → 1.6.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.
@@ -10,9 +10,7 @@ var commonOverrides = {
10
10
  files: ["./*"],
11
11
  extends: ["@rebeccastevens/eslint-config/script"],
12
12
  rules: {
13
- "functional/functional-parameters": "off",
14
13
  "functional/immutable-data": "off",
15
- "node/no-sync": "off",
16
14
  },
17
15
  },
18
16
  {
@@ -8,9 +8,7 @@ var commonOverrides = {
8
8
  files: ["./*"],
9
9
  extends: ["@rebeccastevens/eslint-config/script"],
10
10
  rules: {
11
- "functional/functional-parameters": "off",
12
11
  "functional/immutable-data": "off",
13
- "node/no-sync": "off",
14
12
  },
15
13
  },
16
14
  {
package/dist/modern.cjs CHANGED
@@ -966,8 +966,11 @@ const settings$6 = {
966
966
  },
967
967
  ],
968
968
  "jsdoc/require-param-name": "error",
969
+ "jsdoc/require-param": "off",
969
970
  "jsdoc/require-property-name": "error",
971
+ "jsdoc/require-property": "off",
970
972
  "jsdoc/require-returns-check": "error",
973
+ "jsdoc/require-returns": "off",
971
974
  "jsdoc/require-throws": "warn",
972
975
  "jsdoc/require-yields-check": "error",
973
976
  "jsdoc/tag-lines": [
@@ -981,9 +984,6 @@ const settings$6 = {
981
984
  files: typescriptFiles,
982
985
  rules: {
983
986
  "jsdoc/no-types": "warn",
984
- "jsdoc/require-param": "off",
985
- "jsdoc/require-property": "off",
986
- "jsdoc/require-returns": "off",
987
987
  "jsdoc/require-param-type": "off",
988
988
  "jsdoc/require-property-type": "off",
989
989
  "jsdoc/require-returns-type": "off",
package/dist/modern.mjs CHANGED
@@ -964,8 +964,11 @@ const settings$6 = {
964
964
  },
965
965
  ],
966
966
  "jsdoc/require-param-name": "error",
967
+ "jsdoc/require-param": "off",
967
968
  "jsdoc/require-property-name": "error",
969
+ "jsdoc/require-property": "off",
968
970
  "jsdoc/require-returns-check": "error",
971
+ "jsdoc/require-returns": "off",
969
972
  "jsdoc/require-throws": "warn",
970
973
  "jsdoc/require-yields-check": "error",
971
974
  "jsdoc/tag-lines": [
@@ -979,9 +982,6 @@ const settings$6 = {
979
982
  files: typescriptFiles,
980
983
  rules: {
981
984
  "jsdoc/no-types": "warn",
982
- "jsdoc/require-param": "off",
983
- "jsdoc/require-property": "off",
984
- "jsdoc/require-returns": "off",
985
985
  "jsdoc/require-param-type": "off",
986
986
  "jsdoc/require-property-type": "off",
987
987
  "jsdoc/require-returns-type": "off",
package/dist/script.cjs CHANGED
@@ -2,6 +2,12 @@
2
2
 
3
3
  const baseConfig = {
4
4
  rules: {
5
+ "functional/functional-parameters": [
6
+ "error",
7
+ {
8
+ enforceParameterCount: false,
9
+ },
10
+ ],
5
11
  "functional/no-conditional-statements": "off",
6
12
  "functional/no-expression-statements": "off",
7
13
  "functional/no-loop-statements": "off",
package/dist/script.mjs CHANGED
@@ -1,5 +1,11 @@
1
1
  const baseConfig = {
2
2
  rules: {
3
+ "functional/functional-parameters": [
4
+ "error",
5
+ {
6
+ enforceParameterCount: false,
7
+ },
8
+ ],
3
9
  "functional/no-conditional-statements": "off",
4
10
  "functional/no-expression-statements": "off",
5
11
  "functional/no-loop-statements": "off",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rebeccastevens/eslint-config",
3
- "version": "1.6.4",
3
+ "version": "1.6.6",
4
4
  "description": "My ESLint shareable config.",
5
5
  "keywords": [
6
6
  "eslint config"