Skip to content

Commit

Permalink
Merge pull request #2 from TechSmith/ConstructionYard
Browse files Browse the repository at this point in the history
Construction yard
  • Loading branch information
Mike-Bell authored Feb 8, 2017
2 parents d101340 + c6fac2a commit 16c4576
Showing 1 changed file with 15 additions and 20 deletions.
35 changes: 15 additions & 20 deletions index.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
(function () {
var warn = function () {
return ['warn'].concat(Array.prototype.slice.call(arguments));
};
var error = function () {
return ['error'].concat(Array.prototype.slice.call(arguments));
};
Expand All @@ -12,8 +9,8 @@
},
'extends': 'eslint:recommended',
'rules': {
'no-console': warn(),
'no-extra-parens': warn(),
'no-console': error(),
'no-extra-parens': error(),
'no-unsafe-negation': error(),
'curly': error('all'),
'dot-location': error('property'),
Expand All @@ -31,21 +28,21 @@
'array-callback-return': error(),
'block-scoped-var': error(),
'consistent-return': error(),
'no-alert': warn(),
'no-else-return': warn(),
'no-empty-function': warn(),
'no-alert': error(),
'no-else-return': error(),
'no-empty-function': error(),
'no-eval': error(),
'no-extend-native': warn(),
'no-extend-native': error(),
'no-global-assign': error(),
'no-implicit-globals': warn(),
'no-implicit-globals': error(),
'no-implied-eval': error(),
'no-iterator': error(),
'no-labels': error(),
'no-lone-blocks': error(),
'no-loop-func': warn(),
'no-loop-func': error(),
'no-magic-numbers': error({
ignoreArrayIndexes: true,
ignore: [1]
ignore: [-1, 0, 1, 2, 10, 100, 1000]
}),
'no-multi-spaces': error(),
'no-multi-str': error(),
Expand All @@ -56,8 +53,8 @@
'no-proto': error(),
'no-return-assign': error(),
'no-sequences': error(),
'no-throw-literal': warn(),
'no-unmodified-loop-condition': warn(),
'no-throw-literal': error(),
'no-unmodified-loop-condition': error(),
'no-unused-expressions': error({
allowShortCircuit: true,
allowTernary: true
Expand All @@ -69,11 +66,11 @@
'no-void': error(),
'no-with': error(),
'radix': error(),
'vars-on-top': warn(),
'vars-on-top': error(),
'wrap-iife': error('any'),
'no-shadow': error(),
'no-undef-init': error(),
'no-undefined': warn(),
'no-undefined': error(),
'no-use-before-define': error(),
'array-bracket-spacing': error('never'),
'brace-style': error(),
Expand All @@ -96,15 +93,13 @@
'no-mixed-operators': error(),
'no-multi-assign': error(),
'no-multiple-empty-lines': error(),
'no-nested-ternary': warn(),
'no-nested-ternary': error(),
'no-new-object': error(),
'no-tabs': error(),
'no-trailing-spaces': error({skipBlankLines: true}),
'no-unneeded-ternary': error(),
'no-whitespace-before-property': error(),
'object-curly-newline': error(),
'object-curly-spacing': error(),
'object-property-newline': error(),
'one-var': error('never'),
'padded-blocks': error({
blocks: 'never',
Expand All @@ -118,7 +113,7 @@
'space-in-parens': error(),
'space-infix-ops': error(),
'space-unary-ops': error(),
'unicode-bom': warn()
'unicode-bom': error()
}
};
}());

0 comments on commit 16c4576

Please sign in to comment.