Skip to content

Commit

Permalink
ignore dist in eslint config
Browse files Browse the repository at this point in the history
  • Loading branch information
emma-sg committed Nov 30, 2023
1 parent 3056ec7 commit 930f7d6
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,12 @@ module.exports = {
"no-restricted-globals": [2, "event", "error"],
"linebreak-style": ["error", "unix"],
},
ignorePatterns: ["ruffle/**/*", "build/**/*", "/sw.js", "/ui.js"],
ignorePatterns: [
"ruffle/**/*",
"build/**/*",
"/sw.js",
"/ui.js",
"dist/**/*",
],
reportUnusedDisableDirectives: true,
};

0 comments on commit 930f7d6

Please sign in to comment.