Skip to content

Commit

Permalink
Adding a bit more functionality on "imports"
Browse files Browse the repository at this point in the history
Closes #18
  • Loading branch information
balexandre committed Sep 7, 2020
1 parent 7d33e36 commit 2dd00e1
Show file tree
Hide file tree
Showing 3 changed files with 488 additions and 15 deletions.
15 changes: 12 additions & 3 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"plugins": [
"no-only-tests"
"no-only-tests",
"import"
],
"rules": {
"arrow-spacing": "error",
Expand Down Expand Up @@ -109,7 +110,15 @@
}
],
"space-infix-ops": "error",
"no-only-tests/no-only-tests": "error"
"no-only-tests/no-only-tests": "error",
"import/first": "error",
"import/named": "error",
"import/namespace": "error",
"import/default": "error",
"import/export": "error",
"import/order": "error",
"import/no-duplicates": "error",
"import/newline-after-import": "error"
},
"env": {
"node": true,
Expand All @@ -119,4 +128,4 @@
"ecmaVersion": 2018,
"sourceType": "module"
}
}
}
Loading

0 comments on commit 2dd00e1

Please sign in to comment.