Skip to content
View yidingww's full-sized avatar
🥦
🥦

Block or report yidingww

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. .zshrc .zshrc
    1
    # Fig pre block. Keep at the top of this file.
    2
    [[ -f "$HOME/.fig/shell/zshrc.pre.zsh" ]] && builtin source "$HOME/.fig/shell/zshrc.pre.zsh"
    3
    # If you come from bash you might have to change your $PATH.
    4
    # export PATH=$HOME/bin:/usr/local/bin:$PATH
    5
    
                  
  2. ESLint formatter that groups errors ... ESLint formatter that groups errors by rule name and sort by number of occurrence in descending order
    1
    module.exports = results => {
    2
      const byRuleId = results.reduce((map, current) => {
    3
        current.messages.forEach(({ruleId, line, column}) => {
    4
          if (!map[ruleId]) {
    5
            map[ruleId] = [];
  3. lint-diff-branch lint-diff-branch Public

    CLI tool to run eslint against target branch

    JavaScript 1