Skip to content

Commit

Permalink
Merge pull request #196 from ccampbell/es6
Browse files Browse the repository at this point in the history
Rainbow 2.0
  • Loading branch information
ccampbell authored Jul 2, 2016
2 parents 34b9c62 + 368a68a commit d6d30bd
Show file tree
Hide file tree
Showing 169 changed files with 7,077 additions and 19,981 deletions.
3 changes: 3 additions & 0 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"presets": ["es2015-loose-rollup"]
}
168 changes: 168 additions & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,168 @@
{
"env": {
"browser": true,
"es6": true
},
"globals": {
"console": false,
"Rainbow": false
},
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module"
},
"rules": {
"no-alert": 2,
"no-array-constructor": 2,
"no-caller": 2,
"no-catch-shadow": 2,
"no-cond-assign": 2,
"no-constant-condition": 2,
"no-control-regex": 2,
"no-debugger": 2,
"no-delete-var": 2,
"no-dupe-args": 2,
"no-dupe-keys": 2,
"no-duplicate-case": 2,
"no-else-return": 2,
"no-empty-character-class": 2,
"no-empty-pattern": 2,
"no-empty": 2,
"no-eq-null": 2,
"no-eval": 2,
"no-ex-assign": 2,
"no-extend-native": 2,
"no-extra-bind": 2,
"no-extra-boolean-cast": 2,
"no-extra-parens": [2, "functions"],
"no-extra-semi": 2,
"no-fallthrough": 2,
"no-floating-decimal": 2,
"no-func-assign": 2,
"no-implicit-coercion": [2, { "boolean": false, "number": true, "string": true }],
"no-implied-eval": 2,
"no-inner-declarations": [2, "functions"],
"no-invalid-regexp": 2,
"no-irregular-whitespace": 2,
"no-iterator": 2,
"no-label-var": 2,
"no-labels": 2,
"no-lone-blocks": 2,
"no-lonely-if": 2,
"no-mixed-spaces-and-tabs": [2, false],
"no-multi-spaces": 2,
"no-multi-str": 2,
"no-multiple-empty-lines": 2,
"no-native-reassign": 2,
"no-negated-in-lhs": 2,
"no-nested-ternary": 2,
"no-new-func": 2,
"no-new-object": 2,
"no-new-wrappers": 2,
"no-new": 2,
"no-obj-calls": 2,
"no-octal-escape": 2,
"no-octal": 2,
"no-process-exit": 2,
"no-proto": 2,
"no-redeclare": 2,
"no-regex-spaces": 2,
"no-return-assign": 2,
"no-script-url": 2,
"no-self-assign": 2,
"no-self-compare": 2,
"no-sequences": 2,
"no-shadow-restricted-names": 2,
"no-shadow": 2,
"no-spaced-func": 2,
"no-sparse-arrays": 2,
"no-throw-literal": 2,
"no-trailing-spaces": 2,
"no-undef-init": 2,
"no-undef": 2,
"no-unmodified-loop-condition": 2,
"no-unreachable": 2,
"no-unused-expressions": 2,
"no-unused-vars": [2, { "vars": "all", "args": "none" }],
"no-use-before-define": 2,
"no-useless-call": 2,
"no-useless-concat": 2,
"no-warning-comments": [1, { "terms": ["@todo", "todo", "fixme"] }],
"no-whitespace-before-property": 2,
"no-with": 2,

"accessor-pairs": [2, { "setWithoutGet": true }],
"array-bracket-spacing": [2, "never"],
"array-callback-return": 1,
"brace-style": [2, "stroustrup"],
"camelcase": 2,
"comma-dangle": [2, "never"],
"comma-spacing": 2,
"comma-style": [2, "last"],
"complexity": [1, 12],
"computed-property-spacing": [2, "never"],
"consistent-return": 2,
"curly": [2, "all"],
"dot-notation": [2, { "allowKeywords": true }],
"eol-last": 2,
"eqeqeq": 2,
"indent": [2, 4, { "SwitchCase": 1 }],
"key-spacing": [2, { "beforeColon": false, "afterColon": true }],
"keyword-spacing": 2,
"max-nested-callbacks": [1, 2],
"max-params": [2, 4],
"new-cap": 2,
"new-parens": 2,
"object-curly-spacing": [2, "always"],
"one-var": [2, "never"],
"operator-assignment": [2, "always"],
"quotes": [2, "single", "avoid-escape"],
"radix": 2,
"semi-spacing": [2, { "before": false, "after": true }],
"semi": 2,
"space-before-blocks": [2, "always"],
"space-before-function-paren": [2, "never"],
"space-in-parens": [2, "never"],
"space-infix-ops": 2,
"space-unary-ops": [2, { "words": true, "nonwords": false }],
"spaced-comment": [2, "always", { "exceptions": ["/"] }],
"strict": [2, "function"],
"use-isnan": 2,
"valid-jsdoc": [1, {
"prefer": {
"returns": "return",
"arg": "param",
"arguments": "param"
},
"requireParamDescription": false,
"requireReturn": false,
"requireReturnDescription": false
}],
"valid-typeof": 2,
"wrap-iife": [2, "outside"],
"yoda": [2, "never"],

// ES6
"no-class-assign": 2,
"no-confusing-arrow": 2,
"no-const-assign": 2,
"no-dupe-class-members": 2,
"no-new-symbol": 2,
"no-restricted-syntax": [2, "YieldExpression"],
"no-this-before-super": 2,
"no-useless-constructor": 2,
"no-var": 2,

"arrow-body-style": [2, "as-needed"],
"arrow-parens": 2,
"arrow-spacing": [2, { "before": true, "after": true }],
"constructor-super": 2,
"object-shorthand": [2, "always"],
"prefer-arrow-callback": 2,
"prefer-const": 2,
"prefer-rest-params": 2,
"prefer-spread": 2,
"prefer-template": 1,
"template-curly-spacing": [2, "never"]
}
}
6 changes: 5 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
*.pyc
*.sw?
js/rainbow-custom.min.js
dist/rainbow-custom.min.js
.AppleDouble
node_modules
rainbow.sublime-workspace
.sass-cache
coverage
src/build.js
1 change: 1 addition & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
save-exact=true
40 changes: 0 additions & 40 deletions Gruntfile.js

This file was deleted.

Loading

0 comments on commit d6d30bd

Please sign in to comment.