Skip to content
View davissorenson's full-sized avatar
🌚
🌚

Organizations

@dopeyanimation
Block or Report

Block or report davissorenson

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. tsservercontrols tsservercontrols Public

    TypeScript

  2. How to apply VS Code onSave actions ... How to apply VS Code onSave actions (such as organize imports) to every file in a project
    1
    # How to apply VS Code onSave actions (such as organize imports) to every file in a project 
    2
    
                  
    3
    ## Rationale
    4
    
                  
    5
    Sometimes you want to apply some VS Code onSave action to every file in the project. There are some extensions that claim to do this, but I haven't found any that work. This is a method I discovered, with some help from Stackoverflow of course.
  3. Parse RFC 3339 date with date-fns li... Parse RFC 3339 date with date-fns library using Unicode tokens (Unicode Technical Standard #35)
    1
    I don't guarantee this to be correct, but it should be a good starting point. Make sure you check the dates you're using first, especially details like whether or not you're using T in between date and time, and whether your format specifies fractions of a second.
    2
    
                  
    3
    ```javascript
    4
    import { parse } from "date-fns";
    5