@mlaursen/eslint-config 1.8.0 → 2.0.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/{index.js → index.cjs} +0 -0
- package/package.json +27 -18
- package/.env.github +0 -1
- package/.github/dependabot.yml +0 -10
- package/.prettierignore +0 -2
- package/CHANGELOG.md +0 -225
package/{index.js → index.cjs}
RENAMED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,16 +1,20 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mlaursen/eslint-config",
|
|
3
|
-
"
|
|
3
|
+
"type": "module",
|
|
4
|
+
"version": "2.0.0",
|
|
4
5
|
"description": "An eslint config used by mlaursen for most projects.",
|
|
5
6
|
"main": "index.js",
|
|
6
7
|
"repository": "https://github.com/mlaursen/eslint-config.git",
|
|
7
8
|
"author": "Mikkel Laursen <mlaursen03@gmail.com>",
|
|
8
9
|
"license": "MIT",
|
|
9
|
-
"
|
|
10
|
-
"
|
|
11
|
-
"
|
|
12
|
-
"release": "yarn run-script scripts/release.ts"
|
|
10
|
+
"engines": {
|
|
11
|
+
"pnpm": ">=7",
|
|
12
|
+
"node": ">=16"
|
|
13
13
|
},
|
|
14
|
+
"engineStrict": true,
|
|
15
|
+
"files": [
|
|
16
|
+
"index.cjs"
|
|
17
|
+
],
|
|
14
18
|
"bugs": {
|
|
15
19
|
"url": "https://github.com/mlaursen/eslint-config/issues"
|
|
16
20
|
},
|
|
@@ -19,28 +23,28 @@
|
|
|
19
23
|
"typescript"
|
|
20
24
|
],
|
|
21
25
|
"dependencies": {
|
|
22
|
-
"@typescript-eslint/eslint-plugin": "^5.
|
|
23
|
-
"@typescript-eslint/parser": "^5.
|
|
26
|
+
"@typescript-eslint/eslint-plugin": "^5.43.0",
|
|
27
|
+
"@typescript-eslint/parser": "^5.43.0",
|
|
24
28
|
"confusing-browser-globals": "^1.0.11",
|
|
25
29
|
"eslint-config-prettier": "^8.5.0",
|
|
26
30
|
"eslint-plugin-import": "^2.26.0",
|
|
27
|
-
"eslint-plugin-jest": "^
|
|
31
|
+
"eslint-plugin-jest": "^27.1.5",
|
|
28
32
|
"eslint-plugin-jsx-a11y": "^6.6.1",
|
|
29
|
-
"eslint-plugin-react": "^7.
|
|
33
|
+
"eslint-plugin-react": "^7.31.11",
|
|
30
34
|
"eslint-plugin-react-hooks": "^4.6.0",
|
|
31
|
-
"eslint-plugin-tsdoc": "^0.2.
|
|
35
|
+
"eslint-plugin-tsdoc": "^0.2.17"
|
|
32
36
|
},
|
|
33
37
|
"devDependencies": {
|
|
34
38
|
"@mlaursen/changelog-preset": "^1.1.0",
|
|
35
|
-
"@octokit/core": "^4.0
|
|
36
|
-
"@types/inquirer": "^
|
|
37
|
-
"@types/node": "^18.
|
|
38
|
-
"dotenv": "^16.0.
|
|
39
|
-
"eslint": "^8.
|
|
40
|
-
"inquirer": "^
|
|
39
|
+
"@octokit/core": "^4.1.0",
|
|
40
|
+
"@types/inquirer": "^9.0.3",
|
|
41
|
+
"@types/node": "^18.11.9",
|
|
42
|
+
"dotenv": "^16.0.3",
|
|
43
|
+
"eslint": "^8.28.0",
|
|
44
|
+
"inquirer": "^9.1.4",
|
|
41
45
|
"standard-version": "^9.5.0",
|
|
42
46
|
"ts-node": "^10.9.1",
|
|
43
|
-
"typescript": "^4.
|
|
47
|
+
"typescript": "^4.9.3"
|
|
44
48
|
},
|
|
45
49
|
"peerDependencies": {
|
|
46
50
|
"eslint": ">= 8.0.0",
|
|
@@ -56,5 +60,10 @@
|
|
|
56
60
|
},
|
|
57
61
|
"publishConfig": {
|
|
58
62
|
"access": "public"
|
|
63
|
+
},
|
|
64
|
+
"scripts": {
|
|
65
|
+
"test": "eslint -c index.cjs \"test/**/*.{js,jsx,ts,tsx}\"",
|
|
66
|
+
"run-script": "ts-node -T -P tsconfig.json",
|
|
67
|
+
"release": "yarn run-script scripts/release.ts"
|
|
59
68
|
}
|
|
60
|
-
}
|
|
69
|
+
}
|
package/.env.github
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
GITHUB_TOKEN=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
|
package/.github/dependabot.yml
DELETED
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
version: 2
|
|
2
|
-
updates:
|
|
3
|
-
- package-ecosystem: "npm" # See documentation for possible values
|
|
4
|
-
directory: "/" # Location of package manifests
|
|
5
|
-
schedule:
|
|
6
|
-
interval: "weekly"
|
|
7
|
-
- package-ecosystem: "github-actions"
|
|
8
|
-
directory: "/"
|
|
9
|
-
schedule:
|
|
10
|
-
interval: "daily"
|
package/.prettierignore
DELETED
package/CHANGELOG.md
DELETED
|
@@ -1,225 +0,0 @@
|
|
|
1
|
-
# Changelog
|
|
2
|
-
|
|
3
|
-
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
|
-
|
|
5
|
-
## [1.8.0](https://github.com/mlaursen/eslint-config/compare/v1.7.0...v1.8.0) (2022-08-23)
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
### Features
|
|
9
|
-
|
|
10
|
-
* **deps:** bump eslint dependencies to latest ([768677b](https://github.com/mlaursen/eslint-config/commit/768677bebd3342738e1bef6c3ed6b579594d4f03))
|
|
11
|
-
|
|
12
|
-
## [1.7.0](https://github.com/mlaursen/eslint-config/compare/v1.6.0...v1.7.0) (2022-06-28)
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
### Features
|
|
16
|
-
|
|
17
|
-
* **deps:** bump dependencies to latest ([70fac92](https://github.com/mlaursen/eslint-config/commit/70fac9240155afd9ea065d7373fa776c965bf3fd))
|
|
18
|
-
|
|
19
|
-
## [1.6.0](https://github.com/mlaursen/eslint-config/compare/v1.5.0...v1.6.0) (2022-03-24)
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
### Features
|
|
23
|
-
|
|
24
|
-
* **typescript:** disable @typescript-eslint/consistent-type-imports ([1720116](https://github.com/mlaursen/eslint-config/commit/17201169a3a454901b69226312a0f29174f876a5))
|
|
25
|
-
|
|
26
|
-
## [1.5.0](https://github.com/mlaursen/eslint-config/compare/v1.4.0...v1.5.0) (2022-03-09)
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
### Features
|
|
30
|
-
|
|
31
|
-
* force braces ([f6d3f69](https://github.com/mlaursen/eslint-config/commit/f6d3f69cb8644746f7db8e6d562fbdd3a20c8d19))
|
|
32
|
-
* Force consistent type imports for typescript 3.8 or greater ([880217f](https://github.com/mlaursen/eslint-config/commit/880217fb7ad258acc6601218bb649c0928d97ade))
|
|
33
|
-
* Upgrade eslint dependencies to latest ([7551d04](https://github.com/mlaursen/eslint-config/commit/7551d0457be41ca3844a35b45a1eb11b9a510ffc))
|
|
34
|
-
|
|
35
|
-
## [1.4.0](https://github.com/mlaursen/eslint-config/compare/v1.3.0...v1.4.0) (2022-01-11)
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
### Features
|
|
39
|
-
|
|
40
|
-
* **deps:** bump all dependencies to latest ([0e7b8f5](https://github.com/mlaursen/eslint-config/commit/0e7b8f5042d5b99bceaa47d10e0316496e857944))
|
|
41
|
-
|
|
42
|
-
## [1.3.0](https://github.com/mlaursen/eslint-config/compare/v1.2.0...v1.3.0) (2022-01-01)
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
### Features
|
|
46
|
-
|
|
47
|
-
* **deps:** bump all dependencies to latest ([f995232](https://github.com/mlaursen/eslint-config/commit/f99523225f5df1aa8e2af6540ffa8f3f07563df1))
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
### Bug Fixes
|
|
51
|
-
|
|
52
|
-
* Add peerDependenciesMeta to package.json ([03dcd3d](https://github.com/mlaursen/eslint-config/commit/03dcd3da67cb751c53b8e4367188e4119f8b2e04))
|
|
53
|
-
* Update eslint peerDependency to require v8.0.0 ([c0a593e](https://github.com/mlaursen/eslint-config/commit/c0a593ea8b2ee26287d3f307915381d229ed526c))
|
|
54
|
-
|
|
55
|
-
## [1.2.0](https://github.com/mlaursen/eslint-config/compare/v1.1.8...v1.2.0) (2021-11-21)
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
### Features
|
|
59
|
-
|
|
60
|
-
* Bump all dependencies to latest ([be88c1a](https://github.com/mlaursen/eslint-config/commit/be88c1a18022304d6f71e3dcd59e06e0af2a681e))
|
|
61
|
-
|
|
62
|
-
### [1.1.8](https://github.com/mlaursen/eslint-config/compare/v1.1.7...v1.1.8) (2021-11-02)
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
### Bug Fixes
|
|
66
|
-
|
|
67
|
-
* **react:** added react/jsx-runtime for new jsx-transform ([9ad5498](https://github.com/mlaursen/eslint-config/commit/9ad5498206442d848e8a3af5079a7519f2880d34))
|
|
68
|
-
|
|
69
|
-
### [1.1.7](https://github.com/mlaursen/eslint-config/compare/v1.1.6...v1.1.7) (2021-11-02)
|
|
70
|
-
|
|
71
|
-
### [1.1.6](https://github.com/mlaursen/eslint-config/compare/v1.1.5...v1.1.6) (2021-10-12)
|
|
72
|
-
|
|
73
|
-
### [1.1.5](https://github.com/mlaursen/eslint-config/compare/v1.1.4...v1.1.5) (2021-09-07)
|
|
74
|
-
|
|
75
|
-
### [1.1.4](https://github.com/mlaursen/eslint-config/compare/v1.1.3...v1.1.4) (2021-07-01)
|
|
76
|
-
|
|
77
|
-
### [1.1.3](https://github.com/mlaursen/eslint-config/compare/v1.1.2...v1.1.3) (2021-04-21)
|
|
78
|
-
|
|
79
|
-
### [1.1.2](https://github.com/mlaursen/eslint-config/compare/v1.1.1...v1.1.2) (2021-02-27)
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
### Bug Fixes
|
|
83
|
-
|
|
84
|
-
* no longer show warning if react isn't used in the project ([e405bbf](https://github.com/mlaursen/eslint-config/commit/e405bbf7f6517aefd7120ddff3903436d2e9c10b))
|
|
85
|
-
|
|
86
|
-
### [1.1.1](https://github.com/mlaursen/eslint-config/compare/v1.1.0...v1.1.1) (2021-02-20)
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
### Bug Fixes
|
|
90
|
-
|
|
91
|
-
* **tsdoc:** disabled tsdoc syntax for test files ([daffc7e](https://github.com/mlaursen/eslint-config/commit/daffc7e228d5b973ca0a9a84c50b3e9cc5f67f8f))
|
|
92
|
-
|
|
93
|
-
## [1.1.0](https://github.com/mlaursen/eslint-config/compare/v1.0.0...v1.1.0) (2021-02-20)
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
### Features
|
|
97
|
-
|
|
98
|
-
* **typescript:** default to warn for invalid tsdoc ([a3dd478](https://github.com/mlaursen/eslint-config/commit/a3dd478a89c7cf89937d386c5938e7d483455deb))
|
|
99
|
-
* updated ecmaVersion from 6 to 2018 ([74f1c88](https://github.com/mlaursen/eslint-config/commit/74f1c88d53ad3f40dbd90b86cbd7438b8a4fab86))
|
|
100
|
-
|
|
101
|
-
## [1.0.0](https://github.com/mlaursen/eslint-config/compare/v0.0.9...v1.0.0) (2021-02-18)
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
### Features
|
|
105
|
-
|
|
106
|
-
* **javascript:** updated no-unused-vars for ignore patterns and ignore object spread ([abd7a85](https://github.com/mlaursen/eslint-config/commit/abd7a85871f7f5efad84bac043c431d897c8d601))
|
|
107
|
-
|
|
108
|
-
### [0.0.9](https://github.com/mlaursen/eslint-config/compare/v0.0.8...v0.0.9) (2021-02-17)
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
### Features
|
|
112
|
-
|
|
113
|
-
* updated setupTests files to be considered a test file ([cf0bf34](https://github.com/mlaursen/eslint-config/commit/cf0bf344662b0622fac894dfa2e828f4b2b81d4b))
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
### Bug Fixes
|
|
117
|
-
|
|
118
|
-
* **javascript:** fixed missing globals like Set ([91b34e2](https://github.com/mlaursen/eslint-config/commit/91b34e2f1e6251300a82e9ff23e7b91275201e06))
|
|
119
|
-
|
|
120
|
-
### [0.0.8](https://github.com/mlaursen/eslint-config/compare/v0.0.7...v0.0.8) (2021-02-17)
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
### Bug Fixes
|
|
124
|
-
|
|
125
|
-
* **javascript:** fixed parserOptions for projects that still use javascript ([b680b2a](https://github.com/mlaursen/eslint-config/commit/b680b2a223e2da7cb7a1efb0e9bc66ed72ebb03c))
|
|
126
|
-
|
|
127
|
-
## [0.0.7](https://github.com/mlaursen/eslint-config/compare/v0.0.6...v0.0.7) (2021-02-11)
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
### Dependencies
|
|
131
|
-
|
|
132
|
-
* **deps:** bump `@typescript-eslint/eslint-plugin` from 4.11.0 to 4.12.0 ([#34](https://github.com/mlaursen/eslint-config/issues/34)) ([6bd2d6c](https://github.com/mlaursen/eslint-config/commit/6bd2d6ceed327dfa112cd38699f2411103304fda))
|
|
133
|
-
* **deps:** bump `@typescript-eslint/eslint-plugin` from 4.12.0 to 4.14.1 ([#42](https://github.com/mlaursen/eslint-config/issues/42)) ([d612b8e](https://github.com/mlaursen/eslint-config/commit/d612b8e479c7eb1b120f5294fe389b45ca9f06a6))
|
|
134
|
-
* **deps:** bump `@typescript-eslint/eslint-plugin` from 4.9.1 to 4.11.0 ([#28](https://github.com/mlaursen/eslint-config/issues/28)) ([6bcb43a](https://github.com/mlaursen/eslint-config/commit/6bcb43aa22923339091534dc670dbc5f14c8bc7d))
|
|
135
|
-
* **deps:** bump `@typescript-eslint/parser` from 4.11.0 to 4.12.0 ([#35](https://github.com/mlaursen/eslint-config/issues/35)) ([fb6cc2f](https://github.com/mlaursen/eslint-config/commit/fb6cc2f66546f067a7e119b34691ff3f5c62f421))
|
|
136
|
-
* **deps:** bump `@typescript-eslint/parser` from 4.12.0 to 4.14.1 ([#41](https://github.com/mlaursen/eslint-config/issues/41)) ([4fbbdc1](https://github.com/mlaursen/eslint-config/commit/4fbbdc11bff6d1eb674e2d4124fa59bab86730c5))
|
|
137
|
-
* **deps:** bump `@typescript-eslint/parser` from 4.9.1 to 4.11.0 ([#29](https://github.com/mlaursen/eslint-config/issues/29)) ([2f459d4](https://github.com/mlaursen/eslint-config/commit/2f459d4a7920fb090814ce4f156a15d21e87ba8f))
|
|
138
|
-
* **deps:** bump `eslint-config-prettier` from 7.0.0 to 7.1.0 ([#27](https://github.com/mlaursen/eslint-config/issues/27)) ([02c481c](https://github.com/mlaursen/eslint-config/commit/02c481cacbcf8ff35e133539b4a193d0a6126442))
|
|
139
|
-
* **deps:** bump `eslint-config-prettier` from 7.1.0 to 7.2.0 ([#40](https://github.com/mlaursen/eslint-config/issues/40)) ([1b6b6d2](https://github.com/mlaursen/eslint-config/commit/1b6b6d2adfb9edc768ea3314b9868c72cb2987ce))
|
|
140
|
-
* **deps:** bump `eslint-plugin-react` from 7.21.5 to 7.22.0 ([#32](https://github.com/mlaursen/eslint-config/issues/32)) ([cec0475](https://github.com/mlaursen/eslint-config/commit/cec04757cb9e98e65867973b04300b5df2fa6d3c))
|
|
141
|
-
* **deps:** bump ini from 1.3.5 to 1.3.8 ([#24](https://github.com/mlaursen/eslint-config/issues/24)) ([ddfcd41](https://github.com/mlaursen/eslint-config/commit/ddfcd41b2a87db1184c35440150c5f4919c05beb))
|
|
142
|
-
* **deps:** updated typescript-eslint deps ([af95b48](https://github.com/mlaursen/eslint-config/commit/af95b4828522c3e1f08f7e4c929334ca36b634c4))
|
|
143
|
-
* **deps-dev:** bump `standard-version` from 9.0.0 to 9.1.0 ([#30](https://github.com/mlaursen/eslint-config/issues/30)) ([938f36d](https://github.com/mlaursen/eslint-config/commit/938f36d09e487ac0d176032f800a52009ff952b5))
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
## [0.0.6](https://github.com/mlaursen/eslint-config/compare/v0.0.5...v0.0.6) (2020-12-09)
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
### Dependencies
|
|
152
|
-
|
|
153
|
-
* **deps:** bump `@typescript-eslint/eslint-plugin` from 4.7.0 to 4.8.1 ([#17](https://github.com/mlaursen/eslint-config/issues/17)) ([6cdf4b9](https://github.com/mlaursen/eslint-config/commit/6cdf4b9da107ae2e6d3adc0c697402f04033d2e4))
|
|
154
|
-
* **deps:** bump `@typescript-eslint/eslint-plugin` from 4.8.1 to 4.8.2 ([#20](https://github.com/mlaursen/eslint-config/issues/20)) ([cfc8a2a](https://github.com/mlaursen/eslint-config/commit/cfc8a2a09d9a17d3de13bf9a72ddfd98b8603515))
|
|
155
|
-
* **deps:** bump `@typescript-eslint/eslint-plugin` from 4.8.2 to 4.9.0 ([#22](https://github.com/mlaursen/eslint-config/issues/22)) ([502b265](https://github.com/mlaursen/eslint-config/commit/502b265be42b063f2824d666466e020ad4bf4995))
|
|
156
|
-
* **deps:** bump `@typescript-eslint/parser` from 4.7.0 to 4.8.1 ([#18](https://github.com/mlaursen/eslint-config/issues/18)) ([20791c7](https://github.com/mlaursen/eslint-config/commit/20791c7b61004773d9eb32975b007cd9aaf11009))
|
|
157
|
-
* **deps:** bump `@typescript-eslint/parser` from 4.8.1 to 4.8.2 ([#19](https://github.com/mlaursen/eslint-config/issues/19)) ([0ba627e](https://github.com/mlaursen/eslint-config/commit/0ba627e091b5faae644f91828ebd4939223471b6))
|
|
158
|
-
* **deps:** bump `@typescript-eslint/parser` from 4.8.2 to 4.9.0 ([#21](https://github.com/mlaursen/eslint-config/issues/21)) ([8248416](https://github.com/mlaursen/eslint-config/commit/82484167c93b666e1511dd16c85504f9ac1030e6))
|
|
159
|
-
* **deps:** bump `eslint-config-prettier` from 6.15.0 to 7.0.0 ([#23](https://github.com/mlaursen/eslint-config/issues/23)) ([d4b83b2](https://github.com/mlaursen/eslint-config/commit/d4b83b29eec5a38ff41fd22bd11b4c2f1e30767b))
|
|
160
|
-
* **deps:** updated @typescript-eslint parser and plugin ([1c4c3c7](https://github.com/mlaursen/eslint-config/commit/1c4c3c72b108b7c51876cf52d808ac5b9f8f404f))
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
## [0.0.5](https://github.com/mlaursen/eslint-config/compare/v0.0.4...v0.0.5) (2020-11-13)
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
### Dependencies
|
|
169
|
-
|
|
170
|
-
* **deps:** bump `@typescript-eslint/eslint-plugin` from 4.4.1 to 4.5.0 ([#8](https://github.com/mlaursen/eslint-config/issues/8)) ([604d0c1](https://github.com/mlaursen/eslint-config/commit/604d0c14db20d3ff28b4a37e579eea1ccce04ce4))
|
|
171
|
-
* **deps:** bump `@typescript-eslint/eslint-plugin` from 4.5.0 to 4.6.1 ([#16](https://github.com/mlaursen/eslint-config/issues/16)) ([1f3c5bb](https://github.com/mlaursen/eslint-config/commit/1f3c5bbe1e81af7748a3d9147ea2aff80ccbc23c))
|
|
172
|
-
* **deps:** bump `@typescript-eslint/parser` from 4.4.1 to 4.5.0 ([#9](https://github.com/mlaursen/eslint-config/issues/9)) ([9ea0e33](https://github.com/mlaursen/eslint-config/commit/9ea0e3337250b4dec4825604dbb55f71e7e529bc))
|
|
173
|
-
* **deps:** bump `@typescript-eslint/parser` from 4.5.0 to 4.6.1 ([#15](https://github.com/mlaursen/eslint-config/issues/15)) ([d3c9e9b](https://github.com/mlaursen/eslint-config/commit/d3c9e9b385af8decc96c15bde14d30e21ed7880a))
|
|
174
|
-
* **deps:** bump `confusing-browser-globals` from 1.0.9 to 1.0.10 ([#13](https://github.com/mlaursen/eslint-config/issues/13)) ([f31f1d6](https://github.com/mlaursen/eslint-config/commit/f31f1d662929533604bc9ce7a6fd07856ae1513c))
|
|
175
|
-
* **deps:** bump `eslint-config-prettier` from 6.12.0 to 6.13.0 ([#4](https://github.com/mlaursen/eslint-config/issues/4)) ([da9cd15](https://github.com/mlaursen/eslint-config/commit/da9cd151261bbc1b412ced1982fbe1ba8c4cfc29))
|
|
176
|
-
* **deps:** bump `eslint-config-prettier` from 6.13.0 to 6.14.0 ([#7](https://github.com/mlaursen/eslint-config/issues/7)) ([ef42859](https://github.com/mlaursen/eslint-config/commit/ef42859d030b61fc70e5f6a077b1f405bb3b281e))
|
|
177
|
-
* **deps:** bump `eslint-plugin-jsx-a11y` from 6.3.1 to 6.4.0 ([#6](https://github.com/mlaursen/eslint-config/issues/6)) ([23265fd](https://github.com/mlaursen/eslint-config/commit/23265fd29cf8222b8a2e72c35a246d69a8c02d9e))
|
|
178
|
-
* **deps:** bump `eslint-plugin-jsx-a11y` from 6.4.0 to 6.4.1 ([#11](https://github.com/mlaursen/eslint-config/issues/11)) ([6b96c6f](https://github.com/mlaursen/eslint-config/commit/6b96c6fb53214f88b6bd661ad1736f20017c3fff))
|
|
179
|
-
* **deps:** bump `eslint-plugin-react-hooks` from 4.1.2 to 4.2.0 ([#5](https://github.com/mlaursen/eslint-config/issues/5)) ([9e3e03b](https://github.com/mlaursen/eslint-config/commit/9e3e03bb527bc33b2b06fcb2847db87413b4f1c2))
|
|
180
|
-
* **deps:** bump `eslint-plugin-react` from 7.21.4 to 7.21.5 ([#12](https://github.com/mlaursen/eslint-config/issues/12)) ([a0f3396](https://github.com/mlaursen/eslint-config/commit/a0f339695bb609ae1593e5653e1d7002b86e7aee))
|
|
181
|
-
* **deps:** updated dependencies ([fad8928](https://github.com/mlaursen/eslint-config/commit/fad89284cc69b629f8055d1f1ec448ec5892361a))
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
## [0.0.4](https://github.com/mlaursen/eslint-config/compare/v0.0.3...v0.0.4) (2020-10-12)
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
### Dependencies
|
|
190
|
-
|
|
191
|
-
* **deps:** upgraded plugin versions ([931830f](https://github.com/mlaursen/eslint-config/commit/931830f99785502cda8235c64349feba77628e1d))
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
## [0.0.3](https://github.com/mlaursen/eslint-config/compare/v0.0.2...v0.0.3) (2020-10-12)
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
### Other Internal Changes
|
|
200
|
-
|
|
201
|
-
* more fixes for my preferences ([0d4197e](https://github.com/mlaursen/eslint-config/commit/0d4197e4917502d8123c9d3ebdf011f2ed264a63))
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
## [0.0.2](https://github.com/mlaursen/eslint-config/compare/v0.0.1...v0.0.2) (2020-10-12)
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
### Other Internal Changes
|
|
210
|
-
|
|
211
|
-
* eslint rules to better match my expectations ([f05dddb](https://github.com/mlaursen/eslint-config/commit/f05dddb248ec1733d5e39381aeeab2359a1f93d8))
|
|
212
|
-
* fixed publish command ([c56a8ba](https://github.com/mlaursen/eslint-config/commit/c56a8badb870317b109b591cee75cca930529fb7))
|
|
213
|
-
* fixed publish config for npm ([61e680d](https://github.com/mlaursen/eslint-config/commit/61e680d676ae92c47449536f59ba8f2043ce8eff))
|
|
214
|
-
* updated publish to run version ([a5a26f3](https://github.com/mlaursen/eslint-config/commit/a5a26f35e00bce399f851219c63c69edb9630d83))
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
## [0.0.1](https://github.com/mlaursen/eslint-config/compare/6baa03114ed6f78d86d23dd50dc0e0bea63bf754...v0.0.1) (2020-10-12)
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
### Other Internal Changes
|
|
223
|
-
|
|
224
|
-
* initial config ([30cde0d](https://github.com/mlaursen/eslint-config/commit/30cde0df601f324ffb0c50705dc62980bd1d5721))
|
|
225
|
-
* Initial commit ([6baa031](https://github.com/mlaursen/eslint-config/commit/6baa03114ed6f78d86d23dd50dc0e0bea63bf754))
|