Skip to content

Commit 6b63c38

Browse files
authored
Add required fields for eslint 8 (#58)
1 parent 0795b3b commit 6b63c38

File tree

4 files changed

+4
-1
lines changed

4 files changed

+4
-1
lines changed

jest.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@ module.exports = {
33
collectCoverage: false,
44
collectCoverageFrom: ["rules/**/{!(examples),}/*.js"],
55
moduleFileExtensions: ["js"],
6-
coverageReporters: ["text-summary", "lcov"],
6+
coverageReporters: ["text-summary", "lcov"]
77
};

rules/enforce-effect-naming-convention/enforce-effect-naming-convention.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ module.exports = {
1919
renameEffect: 'Rename "{{ effectName }}" to "{{ effectName }}Fx"',
2020
},
2121
schema: [],
22+
hasSuggestions: true,
2223
},
2324
create(context) {
2425
const parserServices = context.parserServices;

rules/enforce-store-naming-convention/enforce-store-naming-convention.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ module.exports = {
2929
renameStore: 'Rename "{{ storeName }}" to "{{ correctedStoreName }}"',
3030
},
3131
schema: [],
32+
hasSuggestions: true,
3233
},
3334
create(context) {
3435
const { parserServices } = context;

rules/no-unnecessary-duplication/no-unnecessary-duplication.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ module.exports = {
2020
removeSource: "Remove `source`",
2121
},
2222
schema: [],
23+
hasSuggestions: true,
2324
},
2425
create(context) {
2526
const importedFromEffector = new Map();

0 commit comments

Comments
 (0)