dotfiles - nimbletank/nimbletank-coding-standards GitHub Wiki

You may need one or many of these dotfiles in your project. Please update this page if they are out of date

.gitignore

# Include your project-specific ignores in this file
# Read about how to use .gitignore: https://help.github.com/articles/ignoring-files
# Find more examples at https://github.com/github/gitignore

# Dependencies
# - Node modules directory. comment this line to commit them.
node_modules/*
.next
coverage
.out

### OS or Editor folders
._*
.cache
.DS_Store
.idea
.project
.settings
.tmproj
*.esproj
*.sublime-*
.vscode
nbproject
Thumbs.db
logs
*.log

.gitattributes

* text=auto

# Don't diff or textually merge source maps
*.map   binary

.editorconfig

# editorconfig.org
root = true

[*]
indent_style = space
indent_size = 2
end_of_line = lf
charset = utf-8
insert_final_newline = true
trim_trailing_whitespace = true

.prettierrc

{
  "singleQuote": true,
  "trailingComma": "es5",
  "semi": false
}

now.json

{
	"name": "example",
	"alias": "example.now.sh"
}