windhamdavid 8 years ago
parent
commit
ba7e8c9348
6 changed files with 96 additions and 0 deletions
  1. 9 0
      .gitignore
  2. 20 0
      .jshintrc
  3. 49 0
      .jslintrc
  4. 3 0
      .nodemonignore
  5. 13 0
      .tm_properties
  6. 2 0
      README.md

+ 9 - 0
.gitignore

@@ -0,0 +1,9 @@
+.DS_Store
+log/*
+*.log
+npm-debug.log*
+node_modules
+*.rdb
+dump.rdb
+config/*
+app/*

+ 20 - 0
.jshintrc

@@ -0,0 +1,20 @@
+{
+  "predef": [
+    "console",
+    "exports",
+    "module",
+    "require",
+    "__dirname",
+    "secure"
+  ],
+	"node": true,
+	"esnext": true,
+	"bitwise": true,
+	"curly": true,
+	"immed": true,
+	"newcap": true,
+	"noarg": true,
+	"undef": true,
+	"unused": "vars",
+	"strict": false
+}

+ 49 - 0
.jslintrc

@@ -0,0 +1,49 @@
+{
+  "predef": [
+    "console",
+    "module",
+    "require",
+    "__dirname"
+  ],
+
+  "bitwise":      true,
+  "curly":        true,
+  "immed":        true,
+  "newcap":       true,
+  "noarg":        true,
+  "noempty":      true,
+  "nonew":        true,
+  "plusplus":     false,
+  "regexp":       false,
+  "undef":        true,
+  "trailing":     true,
+  "boss":         true,
+  "eqnull":       true,
+  "es5":          true,
+  "esnext":       true,
+  "evil":         true,
+  "expr":         true,
+  "funcscope":    false,
+  "globalstrict": false,
+  "iterator":     false,
+  "lastsemic":    false,
+  "laxbreak":     false,
+  "laxcomma":     false,
+  "loopfunc":     true,
+  "multistr":     false,
+  "onecase":      false,
+  "proto":        false,
+  "regexdash":    false,
+  "scripturl":    false,
+  "shadow":       true,
+  "smarttabs":    false,
+  "sub":          false,
+  "supernew":     false,
+  "validthis":    true,
+  "white":        true,
+  "browser":      true,
+  "jquery":       true,
+  "node":         true,
+  "strict":       false
+
+}

+ 3 - 0
.nodemonignore

@@ -0,0 +1,3 @@
+/.*
+*.md
+/node_modules/*

+ 13 - 0
.tm_properties

@@ -0,0 +1,13 @@
+dwExtraExcludes = "log,vendor,tmp,node_modules,app"
+excludeInFileChooser  = "{$excludeInFileChooser,$dwExtraExcludes}" 
+excludeInFolderSearch = "{$excludeInFolderSearch,$dwExtraExcludes}" 
+excludeInBrowser      = "{$excludeInBrowser,log,vendor,tmp,node_modules}" 
+includeFiles = "{.jshintrc,.jslintrc,.nodemonignore,.gitignore}"
+
+showInvisibles = true
+softTabs = true
+tabSize = 2
+
+projectDirectory = "$CWD"
+TM_PROJECT_DIRECTORY = "$projectDirectory"
+windowTitle = "$TM_DISPLAYNAME — ${CWD/^.*\///} ($TM_SCM_BRANCH)"

+ 2 - 0
README.md

@@ -1 +1,3 @@
 # guta
 # guta
+
+####