@rebeccastevens/eslint-config 1.4.0 → 1.4.2
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 +14 -0
- package/dist/modern.cjs +8 -14
- package/dist/modern.mjs +8 -14
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,20 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
All notable changes to this project will be documented in this file. Dates are displayed in UTC.
|
|
3
3
|
|
|
4
|
+
## [1.4.2](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/compare/v1.4.1...v1.4.2) (2022-09-29)
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
### Bug Fixes
|
|
8
|
+
|
|
9
|
+
* turn off default-param-last ([e47adfc](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/commit/e47adfc81d0b168e42cebc2063b61e4084898dd8))
|
|
10
|
+
|
|
11
|
+
## [1.4.1](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/compare/v1.4.0...v1.4.1) (2022-09-24)
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
### Bug Fixes
|
|
15
|
+
|
|
16
|
+
* adjust markdown overrides ([30f45b8](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/commit/30f45b8fe6a4764947ba4de4a18ab64a7f0aeb25))
|
|
17
|
+
|
|
4
18
|
# [1.4.0](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/compare/v1.3.23...v1.4.0) (2022-09-24)
|
|
5
19
|
|
|
6
20
|
|
package/dist/modern.cjs
CHANGED
|
@@ -414,7 +414,7 @@ const rules$1 = {
|
|
|
414
414
|
],
|
|
415
415
|
"curly": ["error", "all"],
|
|
416
416
|
"default-case-last": "error",
|
|
417
|
-
"default-param-last": "
|
|
417
|
+
"default-param-last": "off",
|
|
418
418
|
"dot-notation": "error",
|
|
419
419
|
"eqeqeq": ["error", "always", { null: "always" }],
|
|
420
420
|
"grouped-accessor-pairs": "error",
|
|
@@ -835,27 +835,32 @@ const settings$5 = {
|
|
|
835
835
|
extends: ["plugin:markdown/recommended"],
|
|
836
836
|
overrides: [
|
|
837
837
|
{
|
|
838
|
-
files: ["
|
|
838
|
+
files: ["./**/*.md"],
|
|
839
839
|
processor: "markdown/markdown",
|
|
840
840
|
},
|
|
841
841
|
{
|
|
842
|
-
files: ["
|
|
842
|
+
files: ["./**/*.md/**"],
|
|
843
843
|
parserOptions: {
|
|
844
844
|
project: null,
|
|
845
845
|
},
|
|
846
|
+
extends: ["plugin:functional/off"],
|
|
846
847
|
rules: {
|
|
847
848
|
"@typescript-eslint/await-thenable": "off",
|
|
848
849
|
"@typescript-eslint/consistent-type-definitions": "off",
|
|
849
850
|
"@typescript-eslint/dot-notation": "off",
|
|
850
851
|
"@typescript-eslint/explicit-member-accessibility": "off",
|
|
852
|
+
"@typescript-eslint/naming-convention": "off",
|
|
851
853
|
"@typescript-eslint/no-confusing-void-expression": "off",
|
|
852
854
|
"@typescript-eslint/no-empty-function": "off",
|
|
855
|
+
"@typescript-eslint/no-explicit-any": "off",
|
|
853
856
|
"@typescript-eslint/no-floating-promises": "off",
|
|
854
857
|
"@typescript-eslint/no-for-in-array": "off",
|
|
855
858
|
"@typescript-eslint/no-implied-eval": "off",
|
|
856
859
|
"@typescript-eslint/no-misused-promises": "off",
|
|
857
860
|
"@typescript-eslint/no-throw-literal": "off",
|
|
861
|
+
"@typescript-eslint/no-unnecessary-condition": "off",
|
|
858
862
|
"@typescript-eslint/no-unnecessary-type-assertion": "off",
|
|
863
|
+
"@typescript-eslint/no-unsafe-argument": "off",
|
|
859
864
|
"@typescript-eslint/no-unsafe-assignment": "off",
|
|
860
865
|
"@typescript-eslint/no-unsafe-call": "off",
|
|
861
866
|
"@typescript-eslint/no-unsafe-member-access": "off",
|
|
@@ -876,17 +881,6 @@ const settings$5 = {
|
|
|
876
881
|
"@typescript-eslint/strict-boolean-expressions": "off",
|
|
877
882
|
"@typescript-eslint/switch-exhaustiveness-check": "off",
|
|
878
883
|
"@typescript-eslint/unbound-method": "off",
|
|
879
|
-
"functional/functional-parameters": "off",
|
|
880
|
-
"functional/immutable-data": "off",
|
|
881
|
-
"functional/no-class": "off",
|
|
882
|
-
"functional/no-expression-statement": "off",
|
|
883
|
-
"functional/no-let": "off",
|
|
884
|
-
"functional/no-loop-statement": "off",
|
|
885
|
-
"functional/no-return-void": "off",
|
|
886
|
-
"functional/no-this-expression": "off",
|
|
887
|
-
"functional/no-throw-statement": "off",
|
|
888
|
-
"functional/no-try-statement": "off",
|
|
889
|
-
"functional/prefer-readonly-type": "off",
|
|
890
884
|
"import/no-unresolved": "off",
|
|
891
885
|
"init-declarations": "off",
|
|
892
886
|
"jsdoc/require-jsdoc": "off",
|
package/dist/modern.mjs
CHANGED
|
@@ -412,7 +412,7 @@ const rules$1 = {
|
|
|
412
412
|
],
|
|
413
413
|
"curly": ["error", "all"],
|
|
414
414
|
"default-case-last": "error",
|
|
415
|
-
"default-param-last": "
|
|
415
|
+
"default-param-last": "off",
|
|
416
416
|
"dot-notation": "error",
|
|
417
417
|
"eqeqeq": ["error", "always", { null: "always" }],
|
|
418
418
|
"grouped-accessor-pairs": "error",
|
|
@@ -833,27 +833,32 @@ const settings$5 = {
|
|
|
833
833
|
extends: ["plugin:markdown/recommended"],
|
|
834
834
|
overrides: [
|
|
835
835
|
{
|
|
836
|
-
files: ["
|
|
836
|
+
files: ["./**/*.md"],
|
|
837
837
|
processor: "markdown/markdown",
|
|
838
838
|
},
|
|
839
839
|
{
|
|
840
|
-
files: ["
|
|
840
|
+
files: ["./**/*.md/**"],
|
|
841
841
|
parserOptions: {
|
|
842
842
|
project: null,
|
|
843
843
|
},
|
|
844
|
+
extends: ["plugin:functional/off"],
|
|
844
845
|
rules: {
|
|
845
846
|
"@typescript-eslint/await-thenable": "off",
|
|
846
847
|
"@typescript-eslint/consistent-type-definitions": "off",
|
|
847
848
|
"@typescript-eslint/dot-notation": "off",
|
|
848
849
|
"@typescript-eslint/explicit-member-accessibility": "off",
|
|
850
|
+
"@typescript-eslint/naming-convention": "off",
|
|
849
851
|
"@typescript-eslint/no-confusing-void-expression": "off",
|
|
850
852
|
"@typescript-eslint/no-empty-function": "off",
|
|
853
|
+
"@typescript-eslint/no-explicit-any": "off",
|
|
851
854
|
"@typescript-eslint/no-floating-promises": "off",
|
|
852
855
|
"@typescript-eslint/no-for-in-array": "off",
|
|
853
856
|
"@typescript-eslint/no-implied-eval": "off",
|
|
854
857
|
"@typescript-eslint/no-misused-promises": "off",
|
|
855
858
|
"@typescript-eslint/no-throw-literal": "off",
|
|
859
|
+
"@typescript-eslint/no-unnecessary-condition": "off",
|
|
856
860
|
"@typescript-eslint/no-unnecessary-type-assertion": "off",
|
|
861
|
+
"@typescript-eslint/no-unsafe-argument": "off",
|
|
857
862
|
"@typescript-eslint/no-unsafe-assignment": "off",
|
|
858
863
|
"@typescript-eslint/no-unsafe-call": "off",
|
|
859
864
|
"@typescript-eslint/no-unsafe-member-access": "off",
|
|
@@ -874,17 +879,6 @@ const settings$5 = {
|
|
|
874
879
|
"@typescript-eslint/strict-boolean-expressions": "off",
|
|
875
880
|
"@typescript-eslint/switch-exhaustiveness-check": "off",
|
|
876
881
|
"@typescript-eslint/unbound-method": "off",
|
|
877
|
-
"functional/functional-parameters": "off",
|
|
878
|
-
"functional/immutable-data": "off",
|
|
879
|
-
"functional/no-class": "off",
|
|
880
|
-
"functional/no-expression-statement": "off",
|
|
881
|
-
"functional/no-let": "off",
|
|
882
|
-
"functional/no-loop-statement": "off",
|
|
883
|
-
"functional/no-return-void": "off",
|
|
884
|
-
"functional/no-this-expression": "off",
|
|
885
|
-
"functional/no-throw-statement": "off",
|
|
886
|
-
"functional/no-try-statement": "off",
|
|
887
|
-
"functional/prefer-readonly-type": "off",
|
|
888
882
|
"import/no-unresolved": "off",
|
|
889
883
|
"init-declarations": "off",
|
|
890
884
|
"jsdoc/require-jsdoc": "off",
|