Skip to content

Commit b255504

Browse files
doomsowerdoomsower
authored andcommitted
fix: delete console statement
1 parent 46420ca commit b255504

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

packages/eslint-config/index.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,7 @@ const localConfigPath = path.resolve(process.cwd(), ".eslint.local.json");
77
try {
88
const contents = fs.readFileSync(localConfigPath, { encoding: "utf-8" });
99
localConfig = JSON.parse(contents);
10-
} catch (e) {
11-
console.log("local rules not found");
12-
}
10+
} catch (e) {}
1311

1412
module.exports = {
1513
plugins: ["simple-import-sort", "unused-imports"],

0 commit comments

Comments
 (0)