Skip to content

Commit

Permalink
Adding vue files to the ignore list in eslint
Browse files Browse the repository at this point in the history
  • Loading branch information
brdandu committed Sep 4, 2024
1 parent 69fbad5 commit 18537bc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions .eslintignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,4 @@
src-script/download-artifact.js
/spa
/generated-html
/src-electron/generator/matter
/src
/src-electron/generator/matter
2 changes: 1 addition & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ module.exports = {
},
overrides: [
{
files: ['test/**/*.js'], // Path to the directory you want to ignore
files: ['test/**/*.js', 'src/**/*.vue'], // Path to the directory you want to ignore
rules: {
'require-jsdoc': 'off' // Disable the require-jsdoc rule for this directory
}
Expand Down

0 comments on commit 18537bc

Please sign in to comment.