diff options
author | HampusM <hampus@hampusmat.com> | 2021-06-11 22:17:42 +0200 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2021-06-11 22:17:42 +0200 |
commit | b2e0d3154336946336edee4e32b57a467e255050 (patch) | |
tree | 8a23423981609deef01bf770b03a6a03250dd743 | |
parent | 3fafaa9f374cbea4806b852b31e8ec4a55c1f3b8 (diff) |
Fixed the client eslintrc's ignorePatterns
-rw-r--r-- | packages/client/.eslintrc.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/client/.eslintrc.js b/packages/client/.eslintrc.js index 7479e5f..a7f7285 100644 --- a/packages/client/.eslintrc.js +++ b/packages/client/.eslintrc.js @@ -10,7 +10,7 @@ module.exports = { parserOptions: { parser: "babel-eslint" }, - ignorePatterns: [ "src/util/*" ], + ignorePatterns: [ "/src/util/*" ], rules: { "no-console": process.env.NODE_ENV === "production" ? "warn" : "off", "no-debugger": process.env.NODE_ENV === "production" ? "warn" : "off", |