Skip to content

Commit

Permalink
fix eslint error on vite.config.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
adiun committed Jun 28, 2021
1 parent 315f4c2 commit 0683ca3
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion scaffold/.eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,13 @@ module.exports = {
"plugin:unicorn/recommended",
"prettier/@typescript-eslint", // Uses eslint-config-prettier to disable ESLint rules from @typescript-eslint/eslint-plugin that would conflict with Prettier.
],
ignorePatterns: ["dist/", "lib/", "node_modules/", ".eslintrc.js"],
ignorePatterns: [
"dist/",
"lib/",
"node_modules/",
".eslintrc.js",
"vite.config.ts",
],
parser: "@typescript-eslint/parser",
parserOptions: {
ecmaVersion: 2021,
Expand Down

0 comments on commit 0683ca3

Please sign in to comment.