Skip to content

Commit

Permalink
vue/order-in-components throws eslint rule schema validation error on…
Browse files Browse the repository at this point in the history
… custom order (#74)
  • Loading branch information
armano2 authored and michalsnik committed Jul 14, 2017
1 parent 602d80f commit 799d1de
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion lib/rules/order-in-components.js
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,16 @@ module.exports = {
recommended: false
},
fixable: null,
schema: []
schema: [
{
type: 'object',
properties: {
order: {
type: 'array'
}
},
additionalProperties: false
}
]
}
}

0 comments on commit 799d1de

Please sign in to comment.