Skip to content

Commit

Permalink
Reuse common file in open-source packages
Browse files Browse the repository at this point in the history
  • Loading branch information
dimikot committed Jan 14, 2024
1 parent 76d616d commit 78c244d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"use strict";
const config = require("../../.eslintrc.base.js")(__dirname);
config.rules["import/no-extraneous-dependencies"] = "error";
config.rules["lodash/import-scope"] = ["error", "method"];
module.exports = config;
module.exports = require("../../.eslintrc.base.js")(__dirname, {
"import/no-extraneous-dependencies": "error",
"lodash/import-scope": ["error", "method"],
});

0 comments on commit 78c244d

Please sign in to comment.