Skip to content

Commit

Permalink
Disable eslint for props because it does not work well with prop-types
Browse files Browse the repository at this point in the history
  • Loading branch information
delphaber committed Mar 24, 2020
1 parent 039118e commit 82b30b9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ module.exports = {
"rules": {
// override/add rules settings here, such as:
// 'vue/no-unused-vars': 'error'
"vue/html-self-closing": "off"
"vue/html-self-closing": "off",
"vue/require-default-prop": "off" // does not work well with prop types
}
};

0 comments on commit 82b30b9

Please sign in to comment.