Skip to content

Instantly share code, notes, and snippets.

@axross
Last active August 29, 2015 14:24
Show Gist options
  • Save axross/4d8d77b584dc350fe8ab to your computer and use it in GitHub Desktop.
Save axross/4d8d77b584dc350fe8ab to your computer and use it in GitHub Desktop.
.eslintrc
{
"parser": "babel-eslint",
"plugins": [
"react"
],
"env": {
"browser": true,
"node": true,
"mocha": true,
},
"ecmaFeatures": {
"arrowFunctions": true,
"blockBindings": true,
"classes": true,
"defaultParams": true,
"destructuring": true,
"forOf": true,
"generators": false,
"modules": true,
"objectLiteralComputedProperties": true,
"objectLiteralDuplicateProperties": false,
"objectLiteralShorthandMethods": true,
"objectLiteralShorthandProperties": true,
"spread": true,
"superInFunctions": true,
"templateStrings": true,
"jsx": true
},
"rules": {
"comma-dangle": [2, "always-multiline"],
"no-cond-assign": 2,
"no-console": 1,
"no-constant-condition": 2,
"no-control-regex": 2,
"no-debugger": 1,
"no-dupe-args": 2,
"no-dupe-keys": 0,
"no-duplicate-case": 2,
"no-empty-character-class": 2,
"no-empty": 2,
"no-ex-assign": 2,
"no-extra-boolean-cast": 2,
"no-extra-parens": [2, "functions"],
"no-extra-semi": 2,
"no-func-assign": 2,
"no-inner-declarations": 2,
"no-invalid-regexp": 2,
"no-irregular-whitespace": 2,
"no-negated-in-lhs": 2,
"no-obj-calls": 2,
"no-regex-spaces": 2,
"no-reserved-keys": 2,
"no-sparse-arrays": 0,
"no-unreachable": 2,
"use-isnan": 2,
"valid-jsdoc": 0,
"valid-typeof": 2,
"no-unexpected-multiline": 2,
"accessor-pairs": 2,
"block-scoped-var": 1,
"complexity": 2,
"consistent-return": 2,
"curly": 0,
"default-case": 0,
"dot-notation": [2, {
"allowKeywords": true,
"allowPattern": "^[a-z]+(_[a-z]+)+$"
}],
"dot-location": [2, "property"],
"eqeqeq": [2, "allow-null"],
"guard-for-in": 2,
"no-alert": 1,
"no-caller": 2,
"no-div-regex": 2,
"no-else-return": 2,
"no-empty-label": 2,
"no-eq-null": 0,
"no-eval": 2,
"no-extend-native": 2,
"no-extra-bind": 2,
"no-fallthrough": 0,
"no-floating-decimal": 2,
"no-implied-eval": 2,
"no-iterator": 2,
"no-labels": 2,
"no-lone-blocks": 2,
"no-loop-func": 2,
"no-multi-spaces": [1, {
"exceptions": {
"Property": true,
"ImportDeclaration": true,
"VariableDeclarator": true,
"AssignmentExpression": true
}
}],
"no-multi-str": 2,
"no-native-reassign": 2,
"no-new-func": 2,
"no-new-wrappers": 2,
"no-new": 2,
"no-octal-escape": 2,
"no-octal": 2,
"no-param-reassign": 0,
"no-process-env": 0,
"no-proto": 2,
"no-redeclare": 2,
"no-return-assign": 2,
"no-script-url": 2,
"no-self-compare": 2,
"no-throw-literal": 2,
"no-unused-expressions": 1,
"no-void": 2,
"no-warning-comments": [2, {
"terms": ["todo", "fixme", "debug", "xxx"],
"location": "start"
}],
"no-with": 2,
"radix": 2,
"vars-on-top": 0,
"wrap-iife": 2,
"yoda": 2,
"strict": [2, "never"],
"no-catch-shadow": 2,
"no-delete-var": 2,
"no-label-var": 2,
"no-label-var": 2,
"no-shadow-restricted-names": 2,
"no-shadow": 2,
"no-undef-init": 2,
"no-undef": 2,
"no-undefined": 2,
"no-unused-vars": [1, {
"vars": "all",
"args": "after-used"
}],
"no-use-before-define": 2,
"handle-callback-err": 2,
"no-mixed-requires": 2,
"no-new-require": 2,
"no-path-concat": 2,
"no-process-exit": 1,
"no-restricted-modules": 0,
"no-sync": 1,
"array-bracket-spacing": [2, "never"],
"brace-style": [2, "1tbs", { "allowSingleLine": true }],
"camelcase": [2, { "properties": "never" }],
"comma-spacing": [2, {
"before": false,
"after": true
}],
"comma-style": [2, "last"],
"computed-property-spacing": [2, "never"],
"consistent-this": [2, "DO NOT USE"],
"eol-last": 2,
"func-names": 0,
"func-style": [2, "expression"],
"indent": [1, 2],
"key-spacing": [1, {
"beforeColon": false,
"afterColon": true,
"align": "value"
}],
"lines-around-comment": 0,
"linebreak-style": [2, "unix"],
"max-nested-callbacks": [2, 3],
"new-cap": [2, {
"newIsCap": true,
"capIsNew": false
}],
"new-parens": 2,
"newline-after-var": 0,
"no-array-constructor": 2,
"no-continue": 2,
"no-inline-comments": 0,
"no-lonely-if": 1,
"no-mixed-spaces-and-tabs": 2,
"no-multiple-empty-lines": [2, {
"max": 1
}],
"no-nested-ternary": 2,
"no-new-object": 2,
"no-space-before-semi": 2,
"no-spaced-func": 2,
"no-ternary": 0,
"no-trailing-spaces": 2,
"no-underscore-dangle": 0,
"no-unneeded-ternary": 2,
"object-curly-spacing": [2, "always", {
"objectsInObjects": false,
"arraysInObjects": true,
}],
"one-var": [2, {
"var": "never",
"let": "never",
"const": "never"
}],
"operator-assignment": [2, "always"],
"operator-linebreak": [2, "after"],
"padded-blocks": [2, "never"],
"quote-props": [1, "as-needed"],
"quotes": [2, "single"],
"semi-spacing": [2, {
"before": false,
"after": true
}],
"semi": [1, "always"],
"sort-vars": 0,
"space-after-keywords": [2, "always"],
"space-before-blocks": [2, "always"],
"space-before-function-paren": [2, "never"],
"space-in-parens": [2, "never"],
"space-infix-ops": [2, { "int32Hint": false }],
"space-return-throw-case": 2,
"space-unary-ops": [2, {
"words": true,
"nonwords": false
}],
"spaced-comment": [2, "always", {
"exceptions": ["-", "+", "="],
"markers": ["/"]
}],
"wrap-regex": 0,
"constructor-super": 2,
"generator-star-spacing": [2, "before"],
"no-this-before-super": 2,
"no-var": 1,
"object-shorthand": 2,
"prefer-const": 2,
"max-depth": [1, 10],
"max-len": [1, 80, 4],
"max-params": [1, 5],
"max-statements": [1, 40],
"no-bitwise": 0,
"no-plusplus": 0,
"react/display-name": [2, {
"acceptTranspilerName": true
}],
"react/jsx-boolean-value": [2, "always"],
"react/jsx-no-undef": 2,
"react/jsx-quotes": [2, "single"],
"react/jsx-sort-prop-types": 0,
"react/jsx-sort-props": 0,
"react/jsx-uses-react": 2,
"react/jsx-uses-vars": 2,
"react/no-did-mount-set-state": [2, "allow-in-func"],
"react/no-did-update-set-state": 2,
"react/no-multi-comp": 0,
"react/no-unknown-property": 2,
"react/prop-types": [2, {
"ignore": ["children", "className", "style"]
}],
"react/react-in-jsx-scope": 2,
"react/require-extension": [2, {
"extensions": [".js", ".jsx", ".json"]
}],
"react/self-closing-comp": 2,
"react/sort-comp": [1, {
"order": [
"/^__[^_]+$/",
"displayName",
"propTypes",
"contextTypes",
"childContextTypes",
"mixins",
"statics",
"defaultProps",
"getDefaultProps",
"getInitialState",
"getChildContext",
"componentWillMount",
"componentDidMount",
"componentWillReceiveProps",
"shouldComponentUpdate",
"componentWillUpdate",
"componentDidUpdate",
"componentWillUnmount",
"/^on.+$/",
"/^get.+$/",
"/^render.+$/",
"render"
]
}],
"react/wrap-multilines": 2
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment