KEMBAR78
Comparing c31cf42...d39bfdc · coffeelint/coffeelint · GitHub
Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: coffeelint/coffeelint
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: c31cf42
Choose a base ref
...
head repository: coffeelint/coffeelint
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: d39bfdc
Choose a head ref
  • 7 commits
  • 7 files changed
  • 2 contributors

Commits on Sep 4, 2014

  1. New rule: Ensure List Comprehensions

    This new rule makes sure that the user remembers to put parentheses
    around any list comprehensions they make. Not putting parentheses around
    a list comprehension is generally a mistake since they actually want the
    whole list and not just a value.
    
    This rule will ignore for-loops with a block, and will ignore for-loops
    where an identifier on the left-hand-side of the assignment operator is
    either a key, value or index identifier of the for loop
    
    E.g.
    ```coffeescript
    newConfig[key] = value for key, value of config
    ```
    swang committed Sep 4, 2014
    Configuration menu
    Copy the full SHA
    65c54f5 View commit details
    Browse the repository at this point in the history

Commits on Dec 20, 2014

  1. Configuration menu
    Copy the full SHA
    2c8d0cf View commit details
    Browse the repository at this point in the history
  2. 1.8.0

    AsaAyers committed Dec 20, 2014
    Configuration menu
    Copy the full SHA
    55a6475 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    302d9f3 View commit details
    Browse the repository at this point in the history
  4. Merge branch 'ensure_comprehensions' of https://github.com/swang/coff…

    …eelint into swang-ensure_comprehensions
    
    Conflicts:
    	src/coffeelint.coffee
    AsaAyers committed Dec 20, 2014
    Configuration menu
    Copy the full SHA
    8b1acb5 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    d9d23c1 View commit details
    Browse the repository at this point in the history
  6. 1.8.1

    AsaAyers committed Dec 20, 2014
    Configuration menu
    Copy the full SHA
    d39bfdc View commit details
    Browse the repository at this point in the history
Loading