Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add value-keyword-case rule #5

Merged
merged 2 commits into from
Apr 5, 2019
Merged

Conversation

rafaelcruzazevedo
Copy link

@rafaelcruzazevedo rafaelcruzazevedo commented Apr 2, 2019

This PR adds value-keyword-case rule.

The following patterns are considered violations:

a {
  display: Block;
}

a {
  display: bLoCk;
}

a {
  display: BLOCK;
}

a {
  transition: -WEBKIT-TRANSFORM 2s;
}

The following patterns are not considered violations:

a {
  display: block;
}

a {
  transition: -webkit-transform 2s;
}

@rafaelcruzazevedo rafaelcruzazevedo force-pushed the feature/value-keyword-case-rule branch from 2b33e1b to 7552db4 Compare April 5, 2019 11:29
@rafaelcruzazevedo rafaelcruzazevedo force-pushed the feature/value-keyword-case-rule branch from 7552db4 to 236043b Compare April 5, 2019 11:36
@bsonntag bsonntag merged commit 915f026 into master Apr 5, 2019
@bsonntag bsonntag deleted the feature/value-keyword-case-rule branch April 5, 2019 15:57
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants