@rebeccastevens/eslint-config 1.5.2 → 1.5.4
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/README.md +11 -9
- package/dist/modern.cjs +26 -1
- package/dist/modern.mjs +26 -1
- package/dist/typescript.cjs +6 -1
- package/dist/typescript.mjs +6 -1
- package/package.json +35 -28
- package/CHANGELOG.md +0 -578
package/README.md
CHANGED
|
@@ -4,9 +4,11 @@
|
|
|
4
4
|
|
|
5
5
|
An [ESLint Shareable Config](https://eslint.org/docs/developer-guide/shareable-configs.html).
|
|
6
6
|
|
|
7
|
-
[](https://www.npmjs.com/package/@rebeccastevens/eslint-config)
|
|
8
|
+
[](https://github.com/RebeccaStevens/template-typescript-node-package/actions/workflows/release.yml)
|
|
9
|
+
[](https://github.com/prettier/prettier)
|
|
10
|
+
[](https://github.com/RebeccaStevens/template-typescript-node-package/discussions)
|
|
11
|
+
[](https://opensource.org/licenses/BSD-3-Clause)
|
|
10
12
|
[](https://commitizen.github.io/cz-cli/)
|
|
11
13
|
[](https://github.com/semantic-release/semantic-release)
|
|
12
14
|
|
|
@@ -17,13 +19,13 @@ An [ESLint Shareable Config](https://eslint.org/docs/developer-guide/shareable-c
|
|
|
17
19
|
## Installation
|
|
18
20
|
|
|
19
21
|
```sh
|
|
20
|
-
|
|
22
|
+
pnpm add -D \
|
|
21
23
|
eslint \
|
|
22
24
|
@rebeccastevens/eslint-config
|
|
23
25
|
```
|
|
24
26
|
|
|
25
27
|
```sh
|
|
26
|
-
|
|
28
|
+
pnpm dlx install-peerdeps @rebeccastevens/eslint-config --dev -o -Y
|
|
27
29
|
```
|
|
28
30
|
|
|
29
31
|
## Usage
|
|
@@ -36,7 +38,7 @@ npx install-peerdeps @rebeccastevens/eslint-config --dev -o -Y
|
|
|
36
38
|
Install Peer Dependencies:
|
|
37
39
|
|
|
38
40
|
```sh
|
|
39
|
-
|
|
41
|
+
pnpm add -D \
|
|
40
42
|
babel-eslint \
|
|
41
43
|
eslint-plugin-eslint-comments \
|
|
42
44
|
eslint-plugin-functional \
|
|
@@ -51,7 +53,7 @@ yarn add -D \
|
|
|
51
53
|
eslint-plugin-unicorn
|
|
52
54
|
```
|
|
53
55
|
|
|
54
|
-
Configure your project's `.eslintrc` file.
|
|
56
|
+
Configure your project's `.eslintrc.json` file.
|
|
55
57
|
|
|
56
58
|
```jsonc
|
|
57
59
|
{
|
|
@@ -77,7 +79,7 @@ Configure your project's `.eslintrc` file.
|
|
|
77
79
|
Install Peer Dependencies:
|
|
78
80
|
|
|
79
81
|
```sh
|
|
80
|
-
|
|
82
|
+
pnpm add -D \
|
|
81
83
|
@typescript-eslint/parser \
|
|
82
84
|
@typescript-eslint/eslint-plugin \
|
|
83
85
|
eslint-plugin-eslint-comments \
|
|
@@ -93,7 +95,7 @@ yarn add -D \
|
|
|
93
95
|
eslint-plugin-unicorn
|
|
94
96
|
```
|
|
95
97
|
|
|
96
|
-
Configure your project's `.eslintrc` file.
|
|
98
|
+
Configure your project's `.eslintrc.json` file.
|
|
97
99
|
|
|
98
100
|
```jsonc
|
|
99
101
|
{
|
package/dist/modern.cjs
CHANGED
|
@@ -815,16 +815,31 @@ const settings$7 = {
|
|
|
815
815
|
const settings$6 = {
|
|
816
816
|
plugins: ["jsdoc"],
|
|
817
817
|
rules: {
|
|
818
|
+
"jsdoc/check-access": "warn",
|
|
818
819
|
"jsdoc/check-alignment": "warn",
|
|
820
|
+
// waiting on https://github.com/eslint/eslint/issues/14745
|
|
821
|
+
// "jsdoc/check-examples": "warn",
|
|
819
822
|
"jsdoc/check-indentation": "warn",
|
|
823
|
+
"jsdoc/check-line-alignment": "warn",
|
|
820
824
|
"jsdoc/check-param-names": "warn",
|
|
825
|
+
"jsdoc/check-property-names": "warn",
|
|
821
826
|
"jsdoc/check-tag-names": "warn",
|
|
827
|
+
"jsdoc/check-types": "warn",
|
|
828
|
+
"jsdoc/check-values": "warn",
|
|
829
|
+
"jsdoc/empty-tags": "warn",
|
|
822
830
|
"jsdoc/implements-on-classes": "warn",
|
|
831
|
+
"jsdoc/multiline-blocks": "warn",
|
|
823
832
|
"jsdoc/newline-after-description": "warn",
|
|
833
|
+
"jsdoc/no-bad-blocks": "warn",
|
|
834
|
+
"jsdoc/no-defaults": "warn",
|
|
835
|
+
"jsdoc/no-multi-asterisks": "warn",
|
|
836
|
+
// For TypeScript
|
|
824
837
|
"jsdoc/no-types": "warn",
|
|
838
|
+
"jsdoc/no-undefined-types": "warn",
|
|
839
|
+
"jsdoc/require-asterisk-prefix": "warn",
|
|
825
840
|
"jsdoc/require-description": "warn",
|
|
826
841
|
// Rule is too strict.
|
|
827
|
-
"jsdoc/require-description-complete-sentence": "off",
|
|
842
|
+
// "jsdoc/require-description-complete-sentence": "off",
|
|
828
843
|
"jsdoc/require-hyphen-before-param-description": "warn",
|
|
829
844
|
"jsdoc/require-jsdoc": [
|
|
830
845
|
"warn",
|
|
@@ -845,8 +860,18 @@ const settings$6 = {
|
|
|
845
860
|
],
|
|
846
861
|
"jsdoc/require-param-description": "warn",
|
|
847
862
|
"jsdoc/require-param-name": "warn",
|
|
863
|
+
"jsdoc/require-property-description": "warn",
|
|
864
|
+
"jsdoc/require-property-name": "warn",
|
|
848
865
|
"jsdoc/require-returns-check": "warn",
|
|
849
866
|
"jsdoc/require-returns-description": "warn",
|
|
867
|
+
"jsdoc/require-yields": "warn",
|
|
868
|
+
"jsdoc/require-yields-check": "warn",
|
|
869
|
+
"jsdoc/tag-lines": [
|
|
870
|
+
"warn",
|
|
871
|
+
"never",
|
|
872
|
+
{ tags: { example: { lines: "always" } } },
|
|
873
|
+
],
|
|
874
|
+
"jsdoc/valid-types": "warn",
|
|
850
875
|
},
|
|
851
876
|
};
|
|
852
877
|
|
package/dist/modern.mjs
CHANGED
|
@@ -813,16 +813,31 @@ const settings$7 = {
|
|
|
813
813
|
const settings$6 = {
|
|
814
814
|
plugins: ["jsdoc"],
|
|
815
815
|
rules: {
|
|
816
|
+
"jsdoc/check-access": "warn",
|
|
816
817
|
"jsdoc/check-alignment": "warn",
|
|
818
|
+
// waiting on https://github.com/eslint/eslint/issues/14745
|
|
819
|
+
// "jsdoc/check-examples": "warn",
|
|
817
820
|
"jsdoc/check-indentation": "warn",
|
|
821
|
+
"jsdoc/check-line-alignment": "warn",
|
|
818
822
|
"jsdoc/check-param-names": "warn",
|
|
823
|
+
"jsdoc/check-property-names": "warn",
|
|
819
824
|
"jsdoc/check-tag-names": "warn",
|
|
825
|
+
"jsdoc/check-types": "warn",
|
|
826
|
+
"jsdoc/check-values": "warn",
|
|
827
|
+
"jsdoc/empty-tags": "warn",
|
|
820
828
|
"jsdoc/implements-on-classes": "warn",
|
|
829
|
+
"jsdoc/multiline-blocks": "warn",
|
|
821
830
|
"jsdoc/newline-after-description": "warn",
|
|
831
|
+
"jsdoc/no-bad-blocks": "warn",
|
|
832
|
+
"jsdoc/no-defaults": "warn",
|
|
833
|
+
"jsdoc/no-multi-asterisks": "warn",
|
|
834
|
+
// For TypeScript
|
|
822
835
|
"jsdoc/no-types": "warn",
|
|
836
|
+
"jsdoc/no-undefined-types": "warn",
|
|
837
|
+
"jsdoc/require-asterisk-prefix": "warn",
|
|
823
838
|
"jsdoc/require-description": "warn",
|
|
824
839
|
// Rule is too strict.
|
|
825
|
-
"jsdoc/require-description-complete-sentence": "off",
|
|
840
|
+
// "jsdoc/require-description-complete-sentence": "off",
|
|
826
841
|
"jsdoc/require-hyphen-before-param-description": "warn",
|
|
827
842
|
"jsdoc/require-jsdoc": [
|
|
828
843
|
"warn",
|
|
@@ -843,8 +858,18 @@ const settings$6 = {
|
|
|
843
858
|
],
|
|
844
859
|
"jsdoc/require-param-description": "warn",
|
|
845
860
|
"jsdoc/require-param-name": "warn",
|
|
861
|
+
"jsdoc/require-property-description": "warn",
|
|
862
|
+
"jsdoc/require-property-name": "warn",
|
|
846
863
|
"jsdoc/require-returns-check": "warn",
|
|
847
864
|
"jsdoc/require-returns-description": "warn",
|
|
865
|
+
"jsdoc/require-yields": "warn",
|
|
866
|
+
"jsdoc/require-yields-check": "warn",
|
|
867
|
+
"jsdoc/tag-lines": [
|
|
868
|
+
"warn",
|
|
869
|
+
"never",
|
|
870
|
+
{ tags: { example: { lines: "always" } } },
|
|
871
|
+
],
|
|
872
|
+
"jsdoc/valid-types": "warn",
|
|
848
873
|
},
|
|
849
874
|
};
|
|
850
875
|
|
package/dist/typescript.cjs
CHANGED
|
@@ -45,7 +45,12 @@ const settings = {
|
|
|
45
45
|
"@typescript-eslint/consistent-indexed-object-style": "error",
|
|
46
46
|
"@typescript-eslint/consistent-type-definitions": ["error", "type"],
|
|
47
47
|
"@typescript-eslint/consistent-type-imports": "error",
|
|
48
|
-
"@typescript-eslint/dot-notation":
|
|
48
|
+
"@typescript-eslint/dot-notation": [
|
|
49
|
+
"error",
|
|
50
|
+
{
|
|
51
|
+
allowIndexSignaturePropertyAccess: true,
|
|
52
|
+
},
|
|
53
|
+
],
|
|
49
54
|
"@typescript-eslint/explicit-function-return-type": [
|
|
50
55
|
"off",
|
|
51
56
|
{
|
package/dist/typescript.mjs
CHANGED
|
@@ -43,7 +43,12 @@ const settings = {
|
|
|
43
43
|
"@typescript-eslint/consistent-indexed-object-style": "error",
|
|
44
44
|
"@typescript-eslint/consistent-type-definitions": ["error", "type"],
|
|
45
45
|
"@typescript-eslint/consistent-type-imports": "error",
|
|
46
|
-
"@typescript-eslint/dot-notation":
|
|
46
|
+
"@typescript-eslint/dot-notation": [
|
|
47
|
+
"error",
|
|
48
|
+
{
|
|
49
|
+
allowIndexSignaturePropertyAccess: true,
|
|
50
|
+
},
|
|
51
|
+
],
|
|
47
52
|
"@typescript-eslint/explicit-function-return-type": [
|
|
48
53
|
"off",
|
|
49
54
|
{
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rebeccastevens/eslint-config",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.4",
|
|
4
4
|
"description": "My ESLint shareable config.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"eslint config"
|
|
@@ -40,29 +40,33 @@
|
|
|
40
40
|
"files": [
|
|
41
41
|
"dist/",
|
|
42
42
|
"package.json",
|
|
43
|
-
"CHANGELOG.md",
|
|
44
43
|
"LICENSE",
|
|
45
44
|
"README.md"
|
|
46
45
|
],
|
|
47
46
|
"scripts": {
|
|
48
|
-
"build": "rimraf dist && rollup -c",
|
|
49
|
-
"check-format": "prettier --list-different \"./**/*.{md,ts,yml}\"",
|
|
50
|
-
"check-spelling": "cspell --config=.cspell.json \"**/*.{md,ts}\"",
|
|
47
|
+
"build": "rimraf dist && rollup -c rollup.config.ts --configPlugin @rollup/plugin-typescript",
|
|
51
48
|
"cz": "git-cz",
|
|
52
|
-
"format": "prettier --write \"./**/*.{md,ts,yml}\"",
|
|
53
49
|
"generate-eslintrc": "ts-node -P scripts/tsconfig.json -r tsconfig-paths/register scripts/generate-eslintrc.ts",
|
|
54
|
-
"lint": "
|
|
55
|
-
"lint:js": "
|
|
50
|
+
"lint": "pnpm run lint:js && pnpm run lint:md && pnpm run lint:prettier && pnpm run lint:knip && pnpm run lint:spelling",
|
|
51
|
+
"lint:js": "pnpm run build && pnpm run generate-eslintrc && eslint .",
|
|
52
|
+
"lint:js-fix": "pnpm run generate-eslintrc && eslint . --fix",
|
|
53
|
+
"lint:knip": "knip --config knip.jsonc --production --exclude exports",
|
|
56
54
|
"lint:md": "markdownlint \"**/*.md\" --config=.markdownlint.json --ignore-path=.markdownlintignore",
|
|
55
|
+
"lint:prettier": "prettier \"**/*\" --ignore-unknown --list-different",
|
|
56
|
+
"lint:prettier-fix": "prettier \"**/*\" --ignore-unknown --write",
|
|
57
|
+
"lint:spelling": "cspell \"**\" \".github/**/*\"",
|
|
57
58
|
"prepare": "husky install",
|
|
58
|
-
"test": "echo no tests"
|
|
59
|
+
"test": "echo no tests",
|
|
60
|
+
"type-check": "tsc --noEmit"
|
|
59
61
|
},
|
|
60
62
|
"dependencies": {
|
|
61
|
-
"deepmerge-ts": "^4.
|
|
63
|
+
"deepmerge-ts": "^4.3.0"
|
|
62
64
|
},
|
|
63
65
|
"devDependencies": {
|
|
64
|
-
"@commitlint/cli": "17.4.
|
|
65
|
-
"@commitlint/config-conventional": "17.4.
|
|
66
|
+
"@commitlint/cli": "17.4.4",
|
|
67
|
+
"@commitlint/config-conventional": "17.4.4",
|
|
68
|
+
"@cspell/dict-cryptocurrencies": "3.0.1",
|
|
69
|
+
"@rebeccastevens/eslint-config": "1.5.3",
|
|
66
70
|
"@rollup/plugin-commonjs": "24.0.1",
|
|
67
71
|
"@rollup/plugin-node-resolve": "15.0.1",
|
|
68
72
|
"@rollup/plugin-typescript": "11.0.0",
|
|
@@ -72,36 +76,38 @@
|
|
|
72
76
|
"@semantic-release/github": "8.0.7",
|
|
73
77
|
"@semantic-release/npm": "9.0.2",
|
|
74
78
|
"@semantic-release/release-notes-generator": "10.0.3",
|
|
75
|
-
"@types/eslint": "8.21.
|
|
76
|
-
"@types/node": "18.
|
|
77
|
-
"@
|
|
78
|
-
"@typescript-eslint/
|
|
79
|
+
"@types/eslint": "8.21.1",
|
|
80
|
+
"@types/node": "18.15.0",
|
|
81
|
+
"@types/rollup-plugin-auto-external": "2.0.2",
|
|
82
|
+
"@typescript-eslint/eslint-plugin": "5.54.1",
|
|
83
|
+
"@typescript-eslint/parser": "5.54.1",
|
|
79
84
|
"commitizen": "4.3.0",
|
|
80
|
-
"cspell": "6.
|
|
85
|
+
"cspell": "6.28.0",
|
|
81
86
|
"cz-conventional-changelog": "3.3.0",
|
|
82
|
-
"eslint": "8.
|
|
83
|
-
"eslint-config-prettier": "8.
|
|
87
|
+
"eslint": "8.36.0",
|
|
88
|
+
"eslint-config-prettier": "8.7.0",
|
|
84
89
|
"eslint-import-resolver-typescript": "3.5.3",
|
|
85
90
|
"eslint-plugin-eslint-comments": "3.2.0",
|
|
86
|
-
"eslint-plugin-functional": "5.0.
|
|
91
|
+
"eslint-plugin-functional": "5.0.6",
|
|
87
92
|
"eslint-plugin-import": "2.27.5",
|
|
88
|
-
"eslint-plugin-jsdoc": "
|
|
93
|
+
"eslint-plugin-jsdoc": "40.0.1",
|
|
89
94
|
"eslint-plugin-markdown": "3.0.0",
|
|
90
95
|
"eslint-plugin-node": "11.1.0",
|
|
91
96
|
"eslint-plugin-optimize-regex": "1.2.1",
|
|
92
97
|
"eslint-plugin-prettier": "4.2.1",
|
|
93
98
|
"eslint-plugin-promise": "6.1.1",
|
|
94
99
|
"eslint-plugin-sonarjs": "0.18.0",
|
|
95
|
-
"eslint-plugin-unicorn": "
|
|
100
|
+
"eslint-plugin-unicorn": "46.0.0",
|
|
96
101
|
"husky": "8.0.3",
|
|
97
|
-
"
|
|
102
|
+
"knip": "2.0.0-alpha.5",
|
|
103
|
+
"lint-staged": "13.2.0",
|
|
98
104
|
"markdownlint-cli": "0.33.0",
|
|
99
|
-
"
|
|
100
|
-
"prettier": "2.
|
|
101
|
-
"rimraf": "4.
|
|
102
|
-
"rollup": "3.
|
|
105
|
+
"prettier": "2.8.4",
|
|
106
|
+
"prettier-plugin-packagejson": "2.4.3",
|
|
107
|
+
"rimraf": "4.4.0",
|
|
108
|
+
"rollup": "3.19.1",
|
|
103
109
|
"rollup-plugin-auto-external": "2.0.0",
|
|
104
|
-
"semantic-release": "20.1.
|
|
110
|
+
"semantic-release": "20.1.1",
|
|
105
111
|
"ts-node": "10.9.1",
|
|
106
112
|
"tsconfig-paths": "4.1.2",
|
|
107
113
|
"tslib": "2.5.0",
|
|
@@ -123,6 +129,7 @@
|
|
|
123
129
|
"eslint-plugin-sonarjs": "*",
|
|
124
130
|
"eslint-plugin-unicorn": "*"
|
|
125
131
|
},
|
|
132
|
+
"packageManager": "pnpm@7.29.0",
|
|
126
133
|
"engines": {
|
|
127
134
|
"node": "^14.17.0 || >=16.0.0"
|
|
128
135
|
}
|
package/CHANGELOG.md
DELETED
|
@@ -1,578 +0,0 @@
|
|
|
1
|
-
# Changelog
|
|
2
|
-
All notable changes to this project will be documented in this file. Dates are displayed in UTC.
|
|
3
|
-
|
|
4
|
-
## [1.5.2](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/compare/v1.5.1...v1.5.2) (2023-02-06)
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
### Bug Fixes
|
|
8
|
-
|
|
9
|
-
* allow parameter names only made of "_"s ([6d3f3d3](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/commit/6d3f3d3acb129d8390e1980f5097508ecc65dd20))
|
|
10
|
-
|
|
11
|
-
## [1.5.1](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/compare/v1.5.0...v1.5.1) (2023-02-06)
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
### Bug Fixes
|
|
15
|
-
|
|
16
|
-
* allow prefixes on parameter names ([d133805](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/commit/d13380548fb932a8efc560c1428926d7e2fc0487))
|
|
17
|
-
|
|
18
|
-
# [1.5.0](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/compare/v1.4.6...v1.5.0) (2023-01-29)
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
### Bug Fixes
|
|
22
|
-
|
|
23
|
-
* **functional/prefer-immutable-types:** decrease severity, enforcement and add exception ([2855e16](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/commit/2855e167c3114c7a59e47bb2189b485ba49646bc))
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
### Features
|
|
27
|
-
|
|
28
|
-
* update deps ([1d13853](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/commit/1d1385391599e290ab86d5c17288faf89d6152da))
|
|
29
|
-
|
|
30
|
-
## [1.4.6](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/compare/v1.4.5...v1.4.6) (2022-12-16)
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
### Bug Fixes
|
|
34
|
-
|
|
35
|
-
* **sonarjs/max-switch-cases:** turn rule off ([ae23f89](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/commit/ae23f89319d9068a8502110cfa93a43b11a1b238))
|
|
36
|
-
|
|
37
|
-
## [1.4.5](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/compare/v1.4.4...v1.4.5) (2022-11-17)
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
### Bug Fixes
|
|
41
|
-
|
|
42
|
-
* update for latest eslint-plugin-functional beta ([e45fa06](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/commit/e45fa06b5110262d41b10d981572ae81efd808c1))
|
|
43
|
-
|
|
44
|
-
## [1.4.4](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/compare/v1.4.3...v1.4.4) (2022-10-04)
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
### Bug Fixes
|
|
48
|
-
|
|
49
|
-
* update for eslint-plugin-functional 5 ([cf67943](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/commit/cf6794302dfa7af8be576c3716e52de65a01ed0a))
|
|
50
|
-
|
|
51
|
-
## [1.4.3](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/compare/v1.4.2...v1.4.3) (2022-09-29)
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
### Bug Fixes
|
|
55
|
-
|
|
56
|
-
* update functional rules ([d8d8420](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/commit/d8d8420774fbb25ce1fa4d42f4d79e2b4865e126))
|
|
57
|
-
|
|
58
|
-
## [1.4.2](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/compare/v1.4.1...v1.4.2) (2022-09-29)
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
### Bug Fixes
|
|
62
|
-
|
|
63
|
-
* turn off default-param-last ([e47adfc](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/commit/e47adfc81d0b168e42cebc2063b61e4084898dd8))
|
|
64
|
-
|
|
65
|
-
## [1.4.1](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/compare/v1.4.0...v1.4.1) (2022-09-24)
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
### Bug Fixes
|
|
69
|
-
|
|
70
|
-
* adjust markdown overrides ([30f45b8](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/commit/30f45b8fe6a4764947ba4de4a18ab64a7f0aeb25))
|
|
71
|
-
|
|
72
|
-
# [1.4.0](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/compare/v1.3.23...v1.4.0) (2022-09-24)
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
### Features
|
|
76
|
-
|
|
77
|
-
* add new eslint rules and configure for use with eslint-functional 5 ([15458bf](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/commit/15458bf5d931aa1442f48568c85e5b65347b2c97))
|
|
78
|
-
|
|
79
|
-
## [1.3.23](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/compare/v1.3.22...v1.3.23) (2022-09-08)
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
### Bug Fixes
|
|
83
|
-
|
|
84
|
-
* allow "index" in paths ([42d142f](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/commit/42d142f4bea4393b3ec52362ba782e2504c8bcf9))
|
|
85
|
-
|
|
86
|
-
## [1.3.22](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/compare/v1.3.21...v1.3.22) (2022-07-11)
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
### Bug Fixes
|
|
90
|
-
|
|
91
|
-
* allow bundledDependency, optionalDependency and peerDependency imports ([7c20742](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/commit/7c20742b6b4ccd51df7c64eb2f749a05fd57681f))
|
|
92
|
-
|
|
93
|
-
## [1.3.21](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/compare/v1.3.20...v1.3.21) (2022-05-29)
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
### Bug Fixes
|
|
97
|
-
|
|
98
|
-
* **import/no-extraneous-dependencies:** support cts and mts extension ([50daeb3](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/commit/50daeb381d64b9a40cb8a5ae6f80b690f10fca68))
|
|
99
|
-
|
|
100
|
-
## [1.3.20](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/compare/v1.3.19...v1.3.20) (2022-04-17)
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
### Bug Fixes
|
|
104
|
-
|
|
105
|
-
* allow plusplus ([4fd2635](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/commit/4fd2635cdaabb866ecd8d6b1abe85aeb3207b7be))
|
|
106
|
-
* loosen promise rules ([517b196](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/commit/517b19684057561d21dc846d896f6260056e1915))
|
|
107
|
-
|
|
108
|
-
## [1.3.19](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/compare/v1.3.18...v1.3.19) (2022-04-13)
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
### Bug Fixes
|
|
112
|
-
|
|
113
|
-
* tweak naming-convention" ([39f4456](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/commit/39f4456cd39e78f09b188d3960c0baa893792b67))
|
|
114
|
-
|
|
115
|
-
## [1.3.18](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/compare/v1.3.17...v1.3.18) (2022-04-09)
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
### Bug Fixes
|
|
119
|
-
|
|
120
|
-
* tweak naming-convention" ([9f12b8a](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/commit/9f12b8a3641217c8eb037993fbf41daeb381fa82))
|
|
121
|
-
|
|
122
|
-
## [1.3.17](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/compare/v1.3.16...v1.3.17) (2022-04-05)
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
### Bug Fixes
|
|
126
|
-
|
|
127
|
-
* tweak naming-convention" ([ab792d2](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/commit/ab792d2b3a40b22723bb2384cae4692e100bf754))
|
|
128
|
-
|
|
129
|
-
## [1.3.16](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/compare/v1.3.15...v1.3.16) (2022-04-04)
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
### Bug Fixes
|
|
133
|
-
|
|
134
|
-
* tweak naming-convention" ([092ae10](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/commit/092ae102744c68657832367634daa679fa2f36b9))
|
|
135
|
-
|
|
136
|
-
## [1.3.15](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/compare/v1.3.14...v1.3.15) (2022-04-04)
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
### Bug Fixes
|
|
140
|
-
|
|
141
|
-
* tweak naming-convention ([3fa91b2](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/commit/3fa91b2f8aa49f2bbf24b916dad0fafe63f20551))
|
|
142
|
-
|
|
143
|
-
## [1.3.14](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/compare/v1.3.13...v1.3.14) (2022-04-04)
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
### Bug Fixes
|
|
147
|
-
|
|
148
|
-
* fix dash character ([5b8a1c7](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/commit/5b8a1c7f8954863825ead368ba5d5045d585f923))
|
|
149
|
-
* tweak naming-convention ([1df2ea5](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/commit/1df2ea5f5fd68b84a9de4976e5a3b87e5e606227))
|
|
150
|
-
|
|
151
|
-
## [1.3.13](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/compare/v1.3.12...v1.3.13) (2022-04-04)
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
### Bug Fixes
|
|
155
|
-
|
|
156
|
-
* tweak naming-convention ([136b90a](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/commit/136b90a05ff64bb3462a03bc4085a627fa874caa))
|
|
157
|
-
|
|
158
|
-
## [1.3.12](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/compare/v1.3.11...v1.3.12) (2022-04-02)
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
### Bug Fixes
|
|
162
|
-
|
|
163
|
-
* allow underscore dangle ([c92396b](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/commit/c92396bdeda2732c34d60311a4ae74da1dac6c27))
|
|
164
|
-
|
|
165
|
-
## [1.3.11](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/compare/v1.3.10...v1.3.11) (2022-04-02)
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
### Bug Fixes
|
|
169
|
-
|
|
170
|
-
* turn off init-declarations ([49068ef](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/commit/49068ef73c410ee86f1335f3c78ef11bc10c53a2))
|
|
171
|
-
|
|
172
|
-
## [1.3.10](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/compare/v1.3.9...v1.3.10) (2022-04-02)
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
### Bug Fixes
|
|
176
|
-
|
|
177
|
-
* allow "m_" prefix to mark something as mutable ([0c5c0d4](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/commit/0c5c0d44c09c359ff6f7660c0820fff614ad15d6))
|
|
178
|
-
* remove tsdoc ([a811527](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/commit/a8115278d708793ff76681b033d9c0b18a2a6fff))
|
|
179
|
-
|
|
180
|
-
## [1.3.9](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/compare/v1.3.8...v1.3.9) (2022-03-23)
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
### Bug Fixes
|
|
184
|
-
|
|
185
|
-
* update commonjs overrides ([3a7485f](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/commit/3a7485f1afd6389c818b1dc87d632272ed306005))
|
|
186
|
-
|
|
187
|
-
## [1.3.8](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/compare/v1.3.7...v1.3.8) (2022-03-23)
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
### Bug Fixes
|
|
191
|
-
|
|
192
|
-
* update commonjs overrides ([ee917f0](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/commit/ee917f0ee45841e85032301f0855c7c179c6463f))
|
|
193
|
-
|
|
194
|
-
## [1.3.7](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/compare/v1.3.6...v1.3.7) (2022-03-23)
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
### Bug Fixes
|
|
198
|
-
|
|
199
|
-
* add common js overrides ([7da04f6](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/commit/7da04f6e24d0a8b6acd7b0ffccfb1aacc77e4a9a))
|
|
200
|
-
|
|
201
|
-
## [1.3.6](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/compare/v1.3.5...v1.3.6) (2022-03-22)
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
### Bug Fixes
|
|
205
|
-
|
|
206
|
-
* update typescript overrides ([5d8a645](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/commit/5d8a6459ac4667dd5500dbff4ad4abf10c799aab))
|
|
207
|
-
|
|
208
|
-
## [1.3.5](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/compare/v1.3.4...v1.3.5) (2022-03-22)
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
### Bug Fixes
|
|
212
|
-
|
|
213
|
-
* turn off no-return-void for scripts ([7888b8d](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/commit/7888b8d12c3b10f55d84c47009c9432ace68837b))
|
|
214
|
-
|
|
215
|
-
## [1.3.4](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/compare/v1.3.3...v1.3.4) (2022-03-22)
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
### Bug Fixes
|
|
219
|
-
|
|
220
|
-
* import/internal-regex ([3bc0fa5](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/commit/3bc0fa5b8e85ac3f4fc16407d27bca6035f19ded))
|
|
221
|
-
|
|
222
|
-
## [1.3.3](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/compare/v1.3.2...v1.3.3) (2022-03-22)
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
### Bug Fixes
|
|
226
|
-
|
|
227
|
-
* upadte functional rules ([19ed80d](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/commit/19ed80dfcd99fedf3de686dbc6e06b5ab3b63f5e))
|
|
228
|
-
* update import rules ([2382357](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/commit/238235709d74a76c0ee1b53fc3c691f72074ea91))
|
|
229
|
-
|
|
230
|
-
## [1.3.2](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/compare/v1.3.1...v1.3.2) (2022-03-22)
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
### Bug Fixes
|
|
234
|
-
|
|
235
|
-
* update node rules ([81a5c93](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/commit/81a5c931f79bee9314fea099d3fa532216c2104b))
|
|
236
|
-
|
|
237
|
-
## [1.3.1](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/compare/v1.3.0...v1.3.1) (2022-02-09)
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
### Bug Fixes
|
|
241
|
-
|
|
242
|
-
* update unicorn rules ([d0bca6e](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/commit/d0bca6ee46f296ece9da5b0cb2758a59400996ad))
|
|
243
|
-
|
|
244
|
-
# [1.3.0](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/compare/v1.2.2...v1.3.0) (2022-02-07)
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
### Bug Fixes
|
|
248
|
-
|
|
249
|
-
* allow throw statements inside async functions ([4bc76bf](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/commit/4bc76bf167517fd3ab1643a896834238d982ebb5))
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
### Features
|
|
253
|
-
|
|
254
|
-
* check tsdocs when using typescript ([3b3d586](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/commit/3b3d586ee6d01754c6db6faf2f302e866b1fd7f8))
|
|
255
|
-
* update script config and add test config ([88196bc](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/commit/88196bc1fd5983fa1ff5d610f42c5e7f1a041daf))
|
|
256
|
-
|
|
257
|
-
## [1.2.2](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/compare/v1.2.1...v1.2.2) (2022-01-29)
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
### Bug Fixes
|
|
261
|
-
|
|
262
|
-
* **@typescript-eslint/prefer-readonly-parameter-types:** treat methods as readonly ([a0a1af7](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/commit/a0a1af7995dae9cc5bd9697d8c585a275c0118bc))
|
|
263
|
-
* **jsdoc/require-jsdoc:** ensure exported function declaration also require jsdoc ([8d647d1](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/commit/8d647d1096079586041e2a50fce83503effd81ea))
|
|
264
|
-
|
|
265
|
-
## [1.2.1](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/compare/v1.2.0...v1.2.1) (2022-01-14)
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
### Bug Fixes
|
|
269
|
-
|
|
270
|
-
* **jsdoc/require-jsdoc:** only require jsdocs on types when they are exported ([0ebcdf8](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/commit/0ebcdf8cdc37e1bc6441bbdf96001e7f35dfac1c))
|
|
271
|
-
* **jsdoc/require-jsdoc:** require jsdocs for exported interfaces ([cec3e26](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/commit/cec3e26ed6d6b0588b4f4680b2e24eb0b05c4b9e))
|
|
272
|
-
|
|
273
|
-
# [1.2.0](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/compare/v1.1.5...v1.2.0) (2021-12-07)
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
### Bug Fixes
|
|
277
|
-
|
|
278
|
-
* add ts version of rule no-redeclare ([eaa92ac](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/commit/eaa92aca6592ccfd2bc80f03fc966c8499c9deaa))
|
|
279
|
-
* increase severity of prefer-readonly-parameter-types rule ([807acf4](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/commit/807acf494b0064af40a1aca11f362a024174a6f7))
|
|
280
|
-
* turn off consistent-return in ts environment ([5cc95bf](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/commit/5cc95bf2fe2784ed37a553413e94e19f3ecca2fc))
|
|
281
|
-
* turn off no-try-statement ([01168ad](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/commit/01168adfe7dac707974bc45a8e6a3d6089832d3c))
|
|
282
|
-
* turn off no-warning-comments ([78150eb](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/commit/78150eb466467371e08724297b6ed353c69ead85))
|
|
283
|
-
* turn off prefer-await-to-then ([abeab1a](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/commit/abeab1ab0d02c57470eef48eb63aec05420f6873))
|
|
284
|
-
* turn off prefer-tacit ([c26c1d6](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/commit/c26c1d6a2a168fbf999cbc7930ba66bfaeb40a37))
|
|
285
|
-
* turn off promise-function-async ([01e413d](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/commit/01e413daf5a5c04badbb9fe87166584a1e1eb1f2))
|
|
286
|
-
* turn off sort-type-union-intersection-members" ([88c3567](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/commit/88c356746053d623c1f1220fad450ac43dc4f3ae))
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
### Features
|
|
290
|
-
|
|
291
|
-
* add config for srcipting ([458fcf6](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/commit/458fcf68baf2ee4af20a4d4ed3fba7f34bb84271))
|
|
292
|
-
|
|
293
|
-
## [1.1.5](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/compare/v1.1.4...v1.1.5) (2021-10-18)
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
### Bug Fixes
|
|
297
|
-
|
|
298
|
-
* **no-extra-parens:** use typescript version of rule when in typescript ([#867](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/issues/867)) ([ba4547e](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/commit/ba4547eb5f5343befd60883480ee21862af3ee1b))
|
|
299
|
-
* **space-infix-ops:** use typescript version of space-infix-ops for t… ([#868](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/issues/868)) ([e526697](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/commit/e52669724305c042d9ef910121546ed5bd197b12))
|
|
300
|
-
* **type-annotation-spacing:** add rule ([#866](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/issues/866)) ([2604984](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/commit/260498492a37e0d27d7420a3aa5e781e0aa7c8e1))
|
|
301
|
-
|
|
302
|
-
## [1.1.4](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/compare/v1.1.3...v1.1.4) (2021-09-21)
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
### Bug Fixes
|
|
306
|
-
|
|
307
|
-
* update markdown overrides ([#855](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/issues/855)) ([4544336](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/commit/45443362262c5cbbc31c855539ab51012e88d5c2))
|
|
308
|
-
|
|
309
|
-
## [1.1.3](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/compare/v1.1.2...v1.1.3) (2021-09-21)
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
### Bug Fixes
|
|
313
|
-
|
|
314
|
-
* turn off all type-checking eslint rules for markdown ([#854](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/issues/854)) ([2605f92](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/commit/2605f925467654e1cf0a61c4c8f35924cb6fe2ee))
|
|
315
|
-
|
|
316
|
-
## [1.1.2](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/compare/v1.1.1...v1.1.2) (2021-09-19)
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
### Bug Fixes
|
|
320
|
-
|
|
321
|
-
* allow mutations of things prefixed with mutable ([6ed77e4](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/commit/6ed77e4f5681d204611b3461732f8ed9ec5fea83))
|
|
322
|
-
|
|
323
|
-
## [1.1.1](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/compare/v1.1.0...v1.1.1) (2021-09-11)
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
### Bug Fixes
|
|
327
|
-
|
|
328
|
-
* remove rules that aren't ready for ts ([77dcde1](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/commit/77dcde179189d7201b14d6d974929b37609363ff))
|
|
329
|
-
|
|
330
|
-
# [1.1.0](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/compare/v1.0.16...v1.1.0) (2021-09-10)
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
### Bug Fixes
|
|
334
|
-
|
|
335
|
-
* **sonarjs/no-duplicate-string:** increase the number of duplicate strings needed to trigger rule ([581fd1e](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/commit/581fd1e1c1da16f98f0ed41a52e9fe6453cff6c9))
|
|
336
|
-
* split builtins from externals ([7151110](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/commit/7151110303b032aacbffde7f37b2347a5ab1c30f))
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
### Features
|
|
340
|
-
|
|
341
|
-
* update ecma version ([f95e9e1](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/commit/f95e9e1ca7c225858d03d246778a6d099909f217))
|
|
342
|
-
* update markdown config ([c9300ed](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/commit/c9300ed1bbd2ce97aae7ace955df0a2664bbe0b7))
|
|
343
|
-
* update unicorn rules ([684fa41](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/commit/684fa410bef1b7a13a060041dfaf385aa027777e))
|
|
344
|
-
|
|
345
|
-
## [1.0.16](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/compare/v1.0.15...v1.0.16) (2021-09-10)
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
### Bug Fixes
|
|
349
|
-
|
|
350
|
-
* update typescript rules ([1230247](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/commit/12302479dc68a2d3c218f783b8bf5673dd7108a5))
|
|
351
|
-
|
|
352
|
-
## [1.0.15](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/compare/v1.0.14...v1.0.15) (2021-08-26)
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
### Bug Fixes
|
|
356
|
-
|
|
357
|
-
* use consistent-type-definitions over prefer-type-literal ([adcd4fe](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/commit/adcd4fed4f29cd8d732517e32e113d9828d25777))
|
|
358
|
-
|
|
359
|
-
## [1.0.14](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/compare/v1.0.13...v1.0.14) (2021-08-24)
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
### Bug Fixes
|
|
363
|
-
|
|
364
|
-
* update what nodes require jsdoc ([27748d3](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/commit/27748d3b470a22957c7abb32168c576dfb19bac4))
|
|
365
|
-
|
|
366
|
-
## [1.0.13](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/compare/v1.0.12...v1.0.13) (2021-08-24)
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
### Bug Fixes
|
|
370
|
-
|
|
371
|
-
* for simple non-readonly arrays, don't use generic style ([3d480b9](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/commit/3d480b9648c7f172e4719c59bc589ad97fffabcc))
|
|
372
|
-
* turn off default-case now that we are checking if exhaustive ([45dea9c](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/commit/45dea9cb74835446e6c7fb8f5788e6f1dd6341ee))
|
|
373
|
-
|
|
374
|
-
## [1.0.12](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/compare/v1.0.11...v1.0.12) (2021-07-30)
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
### Bug Fixes
|
|
378
|
-
|
|
379
|
-
* remove eslint-plugin-simple-import-sort as a peer dep as no longer used ([78d4200](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/commit/78d420025673e42e5528e0d11f25991fccc48252))
|
|
380
|
-
|
|
381
|
-
## [1.0.11](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/compare/v1.0.10...v1.0.11) (2021-07-30)
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
### Bug Fixes
|
|
385
|
-
|
|
386
|
-
* allow void before call expressions ([932351e](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/commit/932351ef856c0062f5e134afda08a80a150588f0))
|
|
387
|
-
|
|
388
|
-
## [1.0.10](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/compare/v1.0.9...v1.0.10) (2021-07-22)
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
### Bug Fixes
|
|
392
|
-
|
|
393
|
-
* use stylistic over stylitic functional ruleset ([68d9560](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/commit/68d956087ce25825bef8760285433eaafe80bbbc))
|
|
394
|
-
|
|
395
|
-
## [1.0.9](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/compare/v1.0.8...v1.0.9) (2021-07-21)
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
### Bug Fixes
|
|
399
|
-
|
|
400
|
-
* ignore mutable types in classes ([31e4982](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/commit/31e4982508d5d2590f9026c1000ac69a68195a26))
|
|
401
|
-
|
|
402
|
-
## [1.0.8](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/compare/v1.0.7...v1.0.8) (2021-07-21)
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
### Bug Fixes
|
|
406
|
-
|
|
407
|
-
* make rule prefer-readonly-parameter-types more lenient ([c0be938](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/commit/c0be9380d597ac09b139f02f017de2cc815a83c3))
|
|
408
|
-
|
|
409
|
-
## [1.0.7](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/compare/v1.0.6...v1.0.7) (2021-07-21)
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
### Bug Fixes
|
|
413
|
-
|
|
414
|
-
* **comma-dangle:** use typescript version of rule ([2065d6e](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/commit/2065d6efce4b0d1bf7c7bc7a06ddfca7b98b7563))
|
|
415
|
-
* **consistent-indexed-object-style:** add rule ([c57ef18](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/commit/c57ef182eeb6d3c727a16d01651e2b8b51d6e88b))
|
|
416
|
-
* **dot-notation:** use typescript version of rule ([4407aef](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/commit/4407aefe9ac256d50ca6f98a41742aa4ee19f7a7))
|
|
417
|
-
* **no-confusing-void-expression:** add rule ([ced5612](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/commit/ced56129c2258bc85d0a2a1e2c57b84c629ee89c))
|
|
418
|
-
* **no-invalid-void-type:** add rule ([875bb0c](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/commit/875bb0ce830a1667717354148874325ba4252450))
|
|
419
|
-
* **no-loop-func:** use typescript version of rule ([db7c588](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/commit/db7c588def28d155db445a47d617bed5424edf98))
|
|
420
|
-
* **no-shadow:** use typescript version of rule ([59945b1](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/commit/59945b1b1bc0da23b1a56812498f53bd0e836cb4))
|
|
421
|
-
* **no-unnecessary-type-constraint:** add rule ([7e31455](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/commit/7e31455efe953f66cdbca9f2b0c15e5520cf539e))
|
|
422
|
-
* **non-nullable-type-assertion-style:** add rule ([273e0db](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/commit/273e0db30a4185279df7a07f8422408a786436e0))
|
|
423
|
-
* **object-curly-spacing:** use typescript version of rule for typescript ([3d0d7eb](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/commit/3d0d7eb859540105a87cc54da003a61a3f19b85a))
|
|
424
|
-
* **prefer-readonly-parameter-types:** add rule ([5d85ce2](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/commit/5d85ce29e392c1d34c50bc3d339e74ffd64399a0))
|
|
425
|
-
* **promise-function-async:** add rule ([26927f0](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/commit/26927f0f3730ff78358e44c5119ccdd017053cb4))
|
|
426
|
-
* **restrict-plus-operands:** add rule ([f68d08e](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/commit/f68d08e6e9ddae423d52a18e1ce62bc4c016428d))
|
|
427
|
-
* **sort-type-union-intersection-members:** add rule ([4bfdb58](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/commit/4bfdb58e9d207c478dc14f149d801e329113887b))
|
|
428
|
-
* **strict-boolean-expressions:** add rule ([c973802](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/commit/c973802db4b9afbe4afe6d609caccfb178ef84fa))
|
|
429
|
-
* **unbound-method:** add rule ([9000402](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/commit/9000402bd71da82476dc3be136dceb1643d05ad4))
|
|
430
|
-
|
|
431
|
-
## [1.0.6](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/compare/v1.0.5...v1.0.6) (2021-01-06)
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
### Bug Fixes
|
|
435
|
-
|
|
436
|
-
* **common-overrides:** fix typo ([f0d6a59](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/commit/f0d6a5956e17dc7d04351271c8ff89b70db0482b))
|
|
437
|
-
|
|
438
|
-
## [1.0.5](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/compare/v1.0.4...v1.0.5) (2021-01-05)
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
### Bug Fixes
|
|
442
|
-
|
|
443
|
-
* **typescript:** update typescript ruels ([ab3f180](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/commit/ab3f180ab4daeb3993f373bdbf1fca117a121b59))
|
|
444
|
-
|
|
445
|
-
## [1.0.4](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/compare/v1.0.3...v1.0.4) (2021-01-05)
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
### Bug Fixes
|
|
449
|
-
|
|
450
|
-
* **import/no-extraneous-dependencies:** update rule options ([25f8ba8](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/commit/25f8ba8f40aaa947c535e0b81c24853b10cc4675))
|
|
451
|
-
|
|
452
|
-
## [1.0.3](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/compare/v1.0.2...v1.0.3) (2021-01-02)
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
### Bug Fixes
|
|
456
|
-
|
|
457
|
-
* turn off rule import/no-commonjs ([e0607bf](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/commit/e0607bf6928ace68850b5dd081c2e102cf69e560))
|
|
458
|
-
|
|
459
|
-
## [1.0.2](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/compare/v1.0.1...v1.0.2) (2021-01-02)
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
### Bug Fixes
|
|
463
|
-
|
|
464
|
-
* disable rule "new-cap" ([9aeceec](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/commit/9aeceecfdb726dd88d01a290a033208145d3c31a))
|
|
465
|
-
* disable rule @typescript-eslint/no-var-requires in non-ts files ([0f1e17a](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/commit/0f1e17ad23406d3f5b647d33d8c4d6140b31f42c))
|
|
466
|
-
* disable rule jsdoc/require-description-complete-sentence ([9e1217b](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/commit/9e1217b7240a0f1ba4320089a854d19e6cc5d302))
|
|
467
|
-
* disable rule node/global-require ([9d598cf](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/commit/9d598cfa3c2087c25ea590a2ac293c8cf4b8fad5))
|
|
468
|
-
* disable rules @typescript-eslint/no-require-imports ([7ce18d8](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/commit/7ce18d876d9ea82fd5ec2a528c179382137ab7bd))
|
|
469
|
-
* opt-in to functional/stylitic rules ([c5d6ae7](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/commit/c5d6ae761035e5d036d97b38b19e30593481ee7c))
|
|
470
|
-
* update unicorn rules ([4ffd355](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/commit/4ffd355da4dc046c970912e63f649b72d8f19b67))
|
|
471
|
-
|
|
472
|
-
## [1.0.1](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/compare/v1.0.0...v1.0.1) (2020-12-24)
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
### Bug Fixes
|
|
476
|
-
|
|
477
|
-
* security updates ([fdb7c90](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/commit/fdb7c90fe351ad50d5a639ba9b3a7e68fdf06131))
|
|
478
|
-
|
|
479
|
-
# [1.0.0](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/compare/v0.2.3...v1.0.0) (2020-12-22)
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
### Code Refactoring
|
|
483
|
-
|
|
484
|
-
* update build process, refactor codebase, update eslint rules ([7b5947e](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/commit/7b5947ee6891f64c06b7f6b7b0db8e73d2d45f57))
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
### Features
|
|
488
|
-
|
|
489
|
-
* split into multiple configs ([1b37e76](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/commit/1b37e769214936824c0146bd3211514aeb452d77))
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
### BREAKING CHANGES
|
|
493
|
-
|
|
494
|
-
* import updates
|
|
495
|
-
* Rules have been updated
|
|
496
|
-
|
|
497
|
-
## [0.2.3](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/compare/v0.2.2...v0.2.3) (2019-12-29)
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
### Bug Fixes
|
|
501
|
-
|
|
502
|
-
* **functional:** load eslint-plugin-functional's external-recommended ([5fded3f](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/commit/5fded3f9872e5a7ae021c9c593111673ff791bde))
|
|
503
|
-
|
|
504
|
-
## [0.2.2](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/compare/v0.2.1...v0.2.2) (2019-11-20)
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
### Bug Fixes
|
|
508
|
-
|
|
509
|
-
* test release ([ac5b17e](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/commit/ac5b17e5fe54f6c2262adb2e3c3cdea3606529df))
|
|
510
|
-
|
|
511
|
-
## [0.2.2](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/compare/v0.2.1...v0.2.2) (2019-11-20)
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
### Bug Fixes
|
|
515
|
-
|
|
516
|
-
* test release ([652927e](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/commit/652927eba93ee6d5a2c316e316c627d030e88786))
|
|
517
|
-
|
|
518
|
-
## [0.2.1](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/compare/v0.2.0...v0.2.1) (2019-11-20)
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
### Bug Fixes
|
|
522
|
-
|
|
523
|
-
* force publish ([58075c1](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/commit/58075c1b1ad4cb8fe08b9ccf798122e18853106d))
|
|
524
|
-
|
|
525
|
-
# [0.2.0](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/compare/v0.1.5...v0.2.0) (2019-09-17)
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
### Bug Fixes
|
|
529
|
-
|
|
530
|
-
* **package:** update rimraf to version 3.0.0 ([23dd874](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/commit/23dd874))
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
### Features
|
|
534
|
-
|
|
535
|
-
* use more of [@typescript-eslint](https://github.com/typescript-eslint) rulesets ([5f6bb0d](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/commit/5f6bb0d))
|
|
536
|
-
|
|
537
|
-
## [v0.1.5](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/compare/v0.1.4...v0.1.5) - 2019-08-10
|
|
538
|
-
|
|
539
|
-
### Commits
|
|
540
|
-
|
|
541
|
-
- feat: use eslint-import-resolver-typescript [`e4d902e`](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/commit/e4d902e1fb55a043da2e7594ef8e03630203bc48)
|
|
542
|
-
- docs(changelog): update for v0.1.4 [`1593e3b`](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/commit/1593e3b98bad1bef7c9ef20e5a9ccf5feef0c095)
|
|
543
|
-
|
|
544
|
-
## [v0.1.4](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/compare/v0.1.3...v0.1.4) - 2019-08-10
|
|
545
|
-
|
|
546
|
-
### Commits
|
|
547
|
-
|
|
548
|
-
- docs(changelog): update for v0.1.3 [`7caf72e`](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/commit/7caf72e8b423408da25105be3a38bba8b49f1acd)
|
|
549
|
-
- feat: turn off multiline-comment-style [`605679b`](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/commit/605679bd45d07298298d283b6f208108026882c0)
|
|
550
|
-
|
|
551
|
-
## [v0.1.3](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/compare/v0.1.2...v0.1.3) - 2019-08-09
|
|
552
|
-
|
|
553
|
-
### Commits
|
|
554
|
-
|
|
555
|
-
- build: build is now done before publish [`ae6a160`](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/commit/ae6a16091ee01e8c47283bcace34378995821a3d)
|
|
556
|
-
- docs(changelog): update for v0.1.2 [`deea803`](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/commit/deea803e2d0003a5573387eaa99d5dae3b8039f7)
|
|
557
|
-
|
|
558
|
-
## [v0.1.2](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/compare/v0.1.1...v0.1.2) - 2019-08-09
|
|
559
|
-
|
|
560
|
-
### Commits
|
|
561
|
-
|
|
562
|
-
- docs(changelog): update for v0.1.1 [`76425cf`](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/commit/76425cfbffe4680e365ba080c55f0c23f9660f13)
|
|
563
|
-
- feat: turn off unicorn/prevent-abbreviations [`c8e6aa5`](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/commit/c8e6aa5d49fbdb3b1d8099090cf5e6146dd7fc92)
|
|
564
|
-
|
|
565
|
-
## [v0.1.1](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/compare/v0.1.0...v0.1.1) - 2019-08-08
|
|
566
|
-
|
|
567
|
-
### Commits
|
|
568
|
-
|
|
569
|
-
- chore: add postpublish script [`1dfd455`](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/commit/1dfd45559b955da5dee474fa727ae0018af6cb01)
|
|
570
|
-
- style: split array items onto there own line [`28171f5`](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/commit/28171f57807f99375c4f1bfe277801ec4ea3e35f)
|
|
571
|
-
- docs: create changelog [`45a931a`](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/commit/45a931ac373df65cf032e530dd17c41a614876ce)
|
|
572
|
-
|
|
573
|
-
## v0.1.0 - 2019-08-08
|
|
574
|
-
|
|
575
|
-
### Commits
|
|
576
|
-
|
|
577
|
-
- feat: initial commit [`371adea`](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/commit/371adeac15528dc9292b1d94ee764974b4986e10)
|
|
578
|
-
- chore: set prepublish script [`13197b6`](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/commit/13197b670b9edfeac1497ef8e38db514b160019b)
|