Skip to content

Instantly share code, notes, and snippets.

@brickpop
Last active July 27, 2016 18:00
Show Gist options
  • Save brickpop/ae28b4b1aa621987965598b0b1a56b68 to your computer and use it in GitHub Desktop.
Save brickpop/ae28b4b1aa621987965598b0b1a56b68 to your computer and use it in GitHub Desktop.
Development Config Files
{
"presets": [
"es2015",
"react",
"stage-1"
],
"plugins": [
"transform-decorators-legacy"
],
"compact": true
}
root = true
[*]
insert_final_newline = true
charset = utf-8
trim_trailing_whitespace = true
end_of_line = lf
[*.{js,json,html,css,scss,less,jade}]
indent_style = tab
indent_size = 2
{
"parser": "babel-eslint",
"plugins": [
"react"
],
"extends": ["eslint:recommended", "plugin:react/recommended"],
"parserOptions": {
"ecmaFeatures": {
"jsx": true
}
},
"env": {
"browser": true,
"node": true,
"es6": true
},
"globals": {
"ionic": false,
"angular": false,
"PushNotification": false,
"device": false,
"Media": false
},
"rules": {
"no-console": 0,
"no-unused-vars": 1,
"comma-dangle": 1,
"no-spaced-func": 2,
"space-before-function-paren": [2, "never"]
}
}
Thumbs.db
ehthumbs.db
# Folder config file
Desktop.ini
# Recycle Bin used on file shares
$RECYCLE.BIN/
# Windows Installer files
*.cab
*.msi
*.msm
*.msp
# =========================
# Operating System Files
# =========================
# OSX
# =========================
.DS_Store
.AppleDouble
.LSOverride
# Icon must ends with two \r.
Icon
# Thumbnails
._*
# Files that might appear on external disk
.Spotlight-V100
.Trashes
node_modules
.sass-cache
apps:
- script: server.js
name: MyApplication
instances: 2
exec_mode: cluster
- script: worker.js
watch: true
env:
NODE_ENV: development
env_production:
NODE_ENV: production
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment