Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upGitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign up
Tell us about your environment
The problem you want to solve.
I have noticed some of the rules do not work properly when using vue-property-decorator, for example:
'vue/require-default-prop': 'warn'
does not detect properties decorated in the formdoes not raise any error even though the prop has no default value.
Additionally,
'vue/prop-name-casing': 'warn'
does not detect properties such as
Your take on the correct solution to problem.
These rules should properly analyze properties declared using
@Prop
.