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

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

  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
    # Enable Powerlevel10k instant prompt. Should stay close to the top of ~/.zshrc.
    4
    # Initialization code that may require console input (password prompts, [y/n]
    5
    # confirmations, etc.) must go above this block; everything else may go below.
  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