Skip to content

Commit

Permalink
Merge branch 'master' of github.com:twitter/recess
Browse files Browse the repository at this point in the history
  • Loading branch information
fat committed Apr 26, 2012
2 parents dce752a + 48a7ee6 commit 5148ea9
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 6 deletions.
2 changes: 1 addition & 1 deletion lib/core.js
Expand Up @@ -128,7 +128,7 @@ RECESS.prototype = {

// log a message trying to explain why
that.log(
"Parse errror".red
"Parse error".red
+ ": "
+ err.message
+ " on line "
Expand Down
8 changes: 4 additions & 4 deletions lib/lint/no-overqualifying.js
@@ -1,11 +1,11 @@
// ==========================================================
// ===================================================
// RECESS
// RULE: Underscores should not be used when naming selectors
// ==========================================================
// RULE: Element selectors should not be overqualified
// ===================================================
// Copyright 2012 Twitter, Inc
// Licensed under the Apache License v2.0
// http://www.apache.org/licenses/LICENSE-2.0
// ==========================================================
// ===================================================

'use strict'

Expand Down
5 changes: 4 additions & 1 deletion lib/lint/strict-property-order.js
Expand Up @@ -92,6 +92,9 @@ var _ = require('underscore')
, 'white-space'
, 'vertical-align'
, 'list-style'
, 'list-style-type'
, 'list-style-position'
, 'list-style-image'
, 'cursor'
, 'background'
, 'background-attachment'
Expand Down Expand Up @@ -271,4 +274,4 @@ module.exports = function (def, data) {

// return valid state
return isValid
}
}

0 comments on commit 5148ea9

Please sign in to comment.