Skip to content
This repository has been archived by the owner on Nov 18, 2022. It is now read-only.

Commit

Permalink
Merge pull request #2 from zeroturnaround/minor-changes
Browse files Browse the repository at this point in the history
Minor changes
  • Loading branch information
bsideup authored Nov 11, 2016
2 parents 7a5492c + 2002cf5 commit f80c97a
Showing 1 changed file with 3 additions and 10 deletions.
13 changes: 3 additions & 10 deletions index.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
const never = "never";
const always = "always";

const possibleErrorRules = {
"no-cond-assign": 2,

Expand Down Expand Up @@ -106,19 +103,19 @@ const styleRules = {

"linebreak-style": [2, "unix"],

"max-len": [2, 205, 4],
"max-len": [2, 140, 4],

"no-mixed-spaces-and-tabs": 2,

"no-multiple-empty-lines": [2, { max: 1 }],

"one-var": [2, never],
"one-var": [2, "never"],

"operator-linebreak": [2, "after"],

"space-before-blocks": 2,

"space-before-function-paren": [2, never],
"space-before-function-paren": [2, "never"],

"spaced-comment": 2,

Expand Down Expand Up @@ -214,10 +211,6 @@ module.exports = {

plugins: ["react"],

ecmaFeatures: {
experimentalObjectRestSpread: true,
},

parser: "babel-eslint",

rules: Object.assign(
Expand Down

0 comments on commit f80c97a

Please sign in to comment.