Skip to content

Instantly share code, notes, and snippets.

View stedman's full-sized avatar

Steve Stedman stedman

View GitHub Profile
@stedman
stedman / .editorconfig
Last active March 16, 2021 22:43
Set up common Node projects with npm, ESLint (Airbnb config), Prettier, EditorConfig, and .gitignore. Note that all files are saved in user directory (`~/`).
# https://editorconfig.org
root = true
[*]
end_of_line = lf
insert_final_newline = true
indent_size = 2
indent_style = space
trim_trailing_whitespace = true