1
0
mirror of https://github.com/mgerb/mywebsite synced 2026-01-12 02:42:48 +00:00

Added file upload and dynamic blog post pages on index

This commit is contained in:
2015-10-20 14:31:22 -05:00
parent 184abc8ac1
commit 5f1fa1cf96
1420 changed files with 269139 additions and 30 deletions

60
node_modules/mongo-express/.jshintrc generated vendored Normal file
View File

@@ -0,0 +1,60 @@
{
/*
* ENVIRONMENTS
* =================
*/
// Define globals exposed by modern browsers, jQuery & Node.js.
"browser": true,
"jquery": true,
"node": true,
// Define globals used by M Project and Wherewolf
"predef": [
],
/*
* ENFORCING OPTIONS
* =================
*/
// Force all variable names to use either camelCase style or UPPER_CASE
// with underscores.
"camelcase": false,
// Prohibit use of == and != in favor of === and !==.
"eqeqeq": true,
// Suppress warnings about == null comparisons.
"eqnull": false,
// Force ES3 compliance - radix parameters and trailing commas
"es3":true,
// Enforce tab width of 4 spaces.
"indent": 4,
// Prohibit use of a variable before it is defined.
"latedef": true,
// Enforce line length to 80 characters
"maxlen": 150,
// Require capitalized names for constructor functions.
"newcap": true,
// Enforce use of single quotation marks for strings.
"quotmark": "single",
// Enforce placing 'use strict' at the top function scope
"strict": true,
// Prohibit trailing whitespace.
"trailing": true,
// Prohibit use of explicitly undeclared variables.
"undef": true,
// Warn when variables are defined but never used.
"unused": true
}