Skip to content

Commit

Permalink
Added boilerplate configuration files.
Browse files Browse the repository at this point in the history
  • Loading branch information
shamasis committed Nov 30, 2016
1 parent d3a5a2e commit 8007855
Show file tree
Hide file tree
Showing 7 changed files with 436 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# editorconfig.org
root = true

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

[*.json]
indent_size = 2

[*.yml]
indent_size = 2
284 changes: 284 additions & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,284 @@
{
"plugins": [
"jsdoc",
"security"
],
"env": {
"browser": true,
"node": true,
"es6": true
},
"rules": {
// Possible Errors
"comma-dangle": ["error", "never"],
"no-cond-assign": "error",
"no-console": "off",
"no-constant-condition": "error",
"no-control-regex": "error",
"no-debugger": "error",
"no-dupe-args": "error",
"no-dupe-keys": "error",
"no-duplicate-case": "error",
"no-empty": "error",
"no-empty-character-class": "error",
"no-ex-assign": "error",
"no-extra-boolean-cast": "error",
"no-extra-parens": "off",
"no-extra-semi": "error",
"no-func-assign": "error",
"no-inner-declarations": "off",
"no-invalid-regexp": "error",
"no-irregular-whitespace": "error",
"no-negated-in-lhs": "error",
"no-obj-calls": "error",
"no-regex-spaces": "error",
"no-sparse-arrays": "error",
"no-unexpected-multiline": "error",
"no-unreachable": "error",
"no-unsafe-finally": "error",
"use-isnan": "error",
"valid-jsdoc": "off",
"valid-typeof": "error",

// Best Practices
"accessor-pairs": "error",
"array-callback-return": "error",
"block-scoped-var": "error",
"complexity": "off",
// "consistent-return": "warn",
"curly": "error",
"default-case": "error",
"dot-location": ["error", "property"],
"dot-notation": "error",
"eqeqeq": "error",
"guard-for-in": "warn",
"no-alert": "error",
"no-caller": "error",
"no-case-declarations": "error",
"no-div-regex": "error",
"no-else-return": "error",
"no-empty-function": "error",
"no-empty-pattern": "error",
"no-eq-null": "error",
"no-eval": "error",
"no-extend-native": "error",
"no-extra-bind": "error",
"no-extra-label": "error",
"no-fallthrough": "error",
"no-floating-decimal": "error",
"no-implicit-coercion": "error",
"no-implicit-globals": "error",
"no-implied-eval": "error",
"no-invalid-this": "error",
"no-iterator": "error",
"no-labels": "error",
"no-lone-blocks": "error",
"no-loop-func": "error",
"no-magic-numbers": "off",
"no-multi-spaces": "error",
"no-multi-str": "error",
"no-native-reassign": "error",
"no-new": "error",
"no-new-func": "error",
"no-new-wrappers": "error",
"no-octal": "error",
"no-octal-escape": "error",
// "_no-param-reassign": "error",
"no-proto": "error",
"no-redeclare": "error",
"no-return-assign": "error",
"no-script-url": "error",
"no-self-assign": "error",
"no-self-compare": "error",
"no-sequences": "error",
"no-throw-literal": "error",
"no-unmodified-loop-condition": "error",
"no-unused-expressions": "off",
"no-unused-labels": "error",
"no-useless-call": "error",
"no-useless-concat": "error",
"no-useless-escape": "error",
"no-void": "error",
"no-warning-comments": "off",
"no-with": "error",
"radix": "off",
// "vars-on-top": "error",
"wrap-iife": "error",
"yoda": "error",

// Strict Mode
"strict": "off",

// Variables
"init-declarations": "off",
"no-catch-shadow": "error",
"no-delete-var": "error",
"no-label-var": "error",
"no-restricted-globals": "error",
// "no-shadow": "error",
"no-shadow-restricted-names": "error",
"no-undef": "off",
"no-undef-init": "error",
"no-undefined": "off",
"no-unused-vars": "error",
"no-use-before-define": "error",

// Stylistic Issues
"array-bracket-spacing": "error",
"block-spacing": "error",
"brace-style": [2, "stroustrup", { "allowSingleLine": true }],
"camelcase": "off",
"comma-spacing": [2, { "before": false, "after": true }],
"comma-style": ["error", "last"],
"computed-property-spacing": "error",
// "consistent-this": "warn",
"eol-last": "error",
"func-names": "off",
"func-style": "off",
"id-blacklist": "error",
"id-length": "off",
"id-match": "error",
"indent": ["error", 4, {
"VariableDeclarator": { "var": 1, "let": 1, "const": 1 },
"SwitchCase": 1,
}],
"jsx-quotes": ["error", "prefer-single"],
"key-spacing": "error",
"keyword-spacing": "error",
"linebreak-style": ["error", "unix"],
"lines-around-comment": ["error", {
"beforeBlockComment": true,
"afterBlockComment": false,
"beforeLineComment": false,
"afterLineComment": false,
"allowBlockStart": true,
"allowBlockEnd": false,
"allowObjectStart": true,
"allowObjectEnd": false,
"allowArrayStart": true,
"allowArrayEnd": false
}],
"max-depth": "error",
"max-len": "off",
"max-nested-callbacks": "error",
"max-params": "off",
"max-statements": "off",
"max-statements-per-line": "off",
"new-cap": "off",
"new-parens": "error",
"newline-after-var": ["off", "always"],
"newline-before-return": "off",
"newline-per-chained-call": "off",
"no-array-constructor": "error",
// "no-bitwise": "error",
// "no-continue": "error",
"no-inline-comments": "off",
"no-lonely-if": "error",
"no-mixed-spaces-and-tabs": "error",
"no-multiple-empty-lines": "error",
"no-negated-condition": "off",
"no-nested-ternary": "off",
"no-new-object": "error",
"no-plusplus": "off",
"no-restricted-syntax": "error",
"no-spaced-func": "error",
"no-ternary": "off",
"no-trailing-spaces": "error",
"no-underscore-dangle": "off",
"no-unneeded-ternary": "error",
"no-whitespace-before-property": "error",
"object-curly-spacing": "error",
"one-var": ["error", "always"],
"one-var-declaration-per-line": "error",
"operator-assignment": "error",
"operator-linebreak": ["error", "after"],
"padded-blocks": "off",
"quote-props": "off",
"quotes": ["error", "single"],
"require-jsdoc": "warn",
"semi": "error",
"semi-spacing": "error",
"sort-vars": "off",
"space-before-blocks": "error",
"space-in-parens": "error",
"space-infix-ops": "error",
"space-unary-ops": "error",
"spaced-comment": ["error", "always", {
"block": {
"exceptions": ["!"]
}
}],
"wrap-regex": "error",

// ECMAScript 6
"arrow-body-style": ["error", "always"],
"arrow-parens": ["error", "always"],
"arrow-spacing": "error",
"constructor-super": "error",
"generator-star-spacing": "error",
"no-class-assign": "error",
"no-confusing-arrow": "error",
"no-const-assign": "error",
"no-dupe-class-members": "error",
"no-duplicate-imports": "error",
"no-new-symbol": "error",
"no-restricted-imports": "error",
"no-this-before-super": "error",
"no-useless-computed-key": "error",
"no-useless-constructor": "off",
"no-var": "off",
"object-shorthand": "off",
// "_prefer-arrow-callback": "error",
"prefer-const": "off",
"prefer-reflect": "off",
// "prefer-rest-params": "error",
// "prefer-spread": "error",
"prefer-template": "off",
"require-yield": "error",
"sort-imports": "off",
"template-curly-spacing": "error",
"yield-star-spacing": "error",

// JSDoc
// "jsdoc/check-param-names": "warn",
// "jsdoc/check-tag-names": "warn",
// "jsdoc/check-types": "warn",
// "jsdoc/newline-after-description": "warn",
// "jsdoc/require-description-complete-sentence": "warn",
// "jsdoc/require-hyphen-before-param-description": "warn",
// "jsdoc/require-param": "warn",
// "jsdoc/require-param-description": "warn",
// "jsdoc/require-param-type": "warn",
// "jsdoc/require-returns-description": "warn",
// "jsdoc/require-returns-type": "warn",

// Lodash
// "lodash/collection-method-value": "warn",
// "lodash/no-extra-args": "error",
// "lodash/chain-style": "error",
// "lodash/path-style": "error",
// "lodash/prefer-chain": "error",
// "lodash/prefer-compact": "error",
// "lodash/prefer-filter": "error",
// "lodash/prefer-flat-map": "error",
// "lodash/prefer-invoke-map": "error",
// "lodash/prefer-map": "error",
// "lodash/prefer-reject": "error",
// "lodash/prefer-thru": "error",
// "lodash/preferred-alias": "warn",
// "lodash/prop-shorthand": "error",

// "lodash/prefer-constant": "warn",
// "lodash/prefer-get": "warn",
// "lodash/prefer-includes": "error",
// "lodash/prefer-is-nil": "warn",
// "lodash/prefer-lodash-chain": "warn",
// "lodash/prefer-lodash-method": "warn",
// "lodash/prefer-lodash-typecheck": "warn",
// "lodash/prefer-matches": "error",
// "lodash/prefer-noop": "error",
// "lodash/prefer-over-quantifier": "error",
// "lodash/prefer-startswith": "error",
// "lodash/prefer-times": "error"
}
}
44 changes: 44 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
# PLATFORM
# ========
# All exclusions that are specific to the NPM, GIT, IDE and Operating Systems.

# - Do not allow installed node modules to be committed. Doing `npm install -d` will bring them in root or other places.
node_modules

# - Do not commit any log file from anywhere
*.log
*.log.*

# - Prevent addition of OS specific file explorer files
Thumbs.db
.DS_Store

# Prevent IDE stuff
.idea


# PROJECT
# =======
# Configuration pertaining to project specific repository structure.

# - Prevent Sublime text IDE files from being commited to repository
*.sublime-*

# - Allow sublime text project file to be commited in the development directory.
!/develop/*.sublime-project

# - Prevent CI output files from being Added
/out/

# - Prevent diff backups from SourceTree from showing as commit.
*.BACKUP.*
*.BASE.*
*.LOCAL.*
*.REMOTE.*
*.orig

# - Prevent unit test coverage reports from being committed to the repository
.coverage

# - do not commit sandbox .cache (but do not add it in npm ignore)
.cache
41 changes: 41 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
# PLATFORM
# ========
# All exclusions that are specific to the NPM, GIT, IDE and Operating Systems.

# - Do not allow installed node modules to be committed. Doing `npm install -d` will bring them in root or other places.
node_modules

# - Do not commit any log file from anywhere
*.log
*.log.*

# - Prevent addition of OS specific file explorer files
Thumbs.db
.DS_Store

# Prevent IDE stuff
.idea


# PROJECT
# =======
# Configuration pertaining to project specific repository structure.

# - Prevent Sublime text IDE files from being commited to repository
*.sublime-*

# - Allow sublime text project file to be commited in the development directory.
!/develop/*.sublime-project

# - Prevent CI output files from being Added
/out/

# - Prevent diff backups from SourceTree from showing as commit.
*.BACKUP.*
*.BASE.*
*.LOCAL.*
*.REMOTE.*
*.orig

# Prevent code coverage from being published to npm
.coverage
4 changes: 4 additions & 0 deletions .nsprc
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"exceptions": [],
"exclusions": []
}
Loading

0 comments on commit 8007855

Please sign in to comment.