Skip to content

Commit

Permalink
依存の依存からのimport禁止
Browse files Browse the repository at this point in the history
  • Loading branch information
na2na-p committed Dec 4, 2023
1 parent 314703c commit 6f1ad64
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,16 @@
]
}
],
"object-shorthand": "error"
"object-shorthand": "error",
"import/no-extraneous-dependencies": [
"error",
{
"devDependencies": [
"**/*.spec.[jt]s"
],
"optionalDependencies": false,
"peerDependencies": false
}
]
}
}

0 comments on commit 6f1ad64

Please sign in to comment.