Skip to content

Commit e4f6b6c

Browse files
authored
Merge pull request #179 from contentstack/feat/oclif-v4-migration
Feat/oclif v4 migration
2 parents eb32dff + 7a42de5 commit e4f6b6c

File tree

6 files changed

+11062
-17673
lines changed

6 files changed

+11062
-17673
lines changed

.eslintrc

Lines changed: 0 additions & 12 deletions
This file was deleted.

.eslintrc.js

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
module.exports = {
2+
parser: "@typescript-eslint/parser",
3+
parserOptions: {
4+
ecmaVersion: 2020,
5+
sourceType: "module",
6+
},
7+
plugins: ["@typescript-eslint"],
8+
extends: ["eslint:recommended", "plugin:@typescript-eslint/recommended"],
9+
rules: {
10+
"unicorn/prefer-module": "off",
11+
"unicorn/no-abusive-eslint-disable": "off",
12+
"@typescript-eslint/no-use-before-define": "off",
13+
"node/no-missing-import": "off",
14+
},
15+
};

0 commit comments

Comments
 (0)