File tree Expand file tree Collapse file tree 4 files changed +11
-8
lines changed Expand file tree Collapse file tree 4 files changed +11
-8
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## 0.8.1
4
+
5
+ - Fix unsaved maintainers.mjs change
6
+ - Fix exported types
7
+
3
8
## 0.8.0
4
9
5
10
- Update dependencies
Original file line number Diff line number Diff line change @@ -19,7 +19,8 @@ export const plugin = {
19
19
} ,
20
20
} ;
21
21
22
- /** @type {import('eslint').Linter.Config } */
22
+ /** @typedef {import('eslint').Linter.Config } Config */
23
+ /** @type {[Config, Config, Config] } */
23
24
export default [
24
25
{
25
26
...eslint . configs . recommended ,
Original file line number Diff line number Diff line change @@ -12,21 +12,18 @@ const pkg = JSON.parse(
12
12
) ;
13
13
14
14
/** @type {import('eslint').ESLint.Plugin } */
15
- const plugin = {
15
+ export const plugin = {
16
16
meta : {
17
17
name : pkg . name + '/maintainers' ,
18
18
version : pkg . version ,
19
19
} ,
20
20
} ;
21
21
22
- /** @type {import('eslint').Linter.Config } */
22
+ /** @typedef {import('eslint').Linter.Config } Config */
23
+ /** @type {[Config, Config, Config] } */
23
24
export default [
24
25
{
25
26
...eslint . configs . recommended ,
26
- plugins : {
27
- jest : jestPlugin ,
28
- [ plugin . meta . name ] : plugin ,
29
- } ,
30
27
languageOptions : {
31
28
parser : babelParser ,
32
29
parserOptions : {
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @exercism/eslint-config-javascript" ,
3
- "version" : " 0.8.0 " ,
3
+ "version" : " 0.8.1 " ,
4
4
"description" : " ESLint configuration for the JavaScript track on Exercism" ,
5
5
"main" : " index.mjs" ,
6
6
"scripts" : {
You can’t perform that action at this time.
0 commit comments