Skip to content

Commit

Permalink
rollback: required-attribute config.
Browse files Browse the repository at this point in the history
  • Loading branch information
MeirionHughes committed Feb 10, 2017
1 parent b8fe917 commit b8b60c5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions source/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,11 +46,11 @@ export class Config {
* attr: must have an attribute that matches the reg-ex.
* msg: the error to report if the rule fails
*/
requiredAttribute: Array<{ tag: RegExp, attr: RegExp, msg: string }> = [{
requiredAttribute: Array<{ tag: RegExp, attr: RegExp, msg: string }> = [/*{
tag: /^button$/,
attr: /^type$/,
msg: "buttons without a type have irregular behavour"
}];
}*/];


/**
Expand Down

0 comments on commit b8b60c5

Please sign in to comment.