Skip to content

Commit 514fe69

Browse files
committed
modifying eslintrc to work with import issues
1 parent e0328e8 commit 514fe69

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.eslintrc

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,9 @@
33
"root": true,
44
"plugins": ["jest", "react"],
55
"rules": {
6-
"arrow-parens": [2, "as-needed"]
6+
"arrow-parens": [2, "as-needed"],
7+
"import/no-unresolved": "off",
8+
"import/extensions": "off"
79
},
810
"env": {
911
"es6": true,

src/extension/build/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "Reactime",
3-
"version": "3.0",
3+
"version": "3.1",
44
"devtools_page": "devtools.html",
55
"description": "A Chrome extension that helps debug state in React applications by memorizing the state of components with every render.",
66
"manifest_version": 2,

0 commit comments

Comments
 (0)