Skip to content

Commit

Permalink
Add required fields for eslint 8 (#58)
Browse files Browse the repository at this point in the history
  • Loading branch information
igorkamyshev authored Oct 7, 2021
1 parent 0795b3b commit 6b63c38
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion jest.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ module.exports = {
collectCoverage: false,
collectCoverageFrom: ["rules/**/{!(examples),}/*.js"],
moduleFileExtensions: ["js"],
coverageReporters: ["text-summary", "lcov"],
coverageReporters: ["text-summary", "lcov"]
};
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ module.exports = {
renameEffect: 'Rename "{{ effectName }}" to "{{ effectName }}Fx"',
},
schema: [],
hasSuggestions: true,
},
create(context) {
const parserServices = context.parserServices;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ module.exports = {
renameStore: 'Rename "{{ storeName }}" to "{{ correctedStoreName }}"',
},
schema: [],
hasSuggestions: true,
},
create(context) {
const { parserServices } = context;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ module.exports = {
removeSource: "Remove `source`",
},
schema: [],
hasSuggestions: true,
},
create(context) {
const importedFromEffector = new Map();
Expand Down

0 comments on commit 6b63c38

Please sign in to comment.