Skip to content

Instantly share code, notes, and snippets.

@noopnik
Last active February 16, 2017 15:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save noopnik/4478e85b9c7d97b1016514a3ee998526 to your computer and use it in GitHub Desktop.
Save noopnik/4478e85b9c7d97b1016514a3ee998526 to your computer and use it in GitHub Desktop.
{
"extends": "airbnb",
"parser": "babel-eslint",
"parserOptions": {
"ecmaVersion": 7,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true,
"impliedStrict": false
}
},
"env": {
"browser": true,
"node": true,
"es6": true,
"mocha": true
},
"root":true,
"plugins":[
"react"
],
"rules": {
"react/jsx-filename-extension": [1, { "extensions": [".js", ".jsx"] }],
"no-param-reassign": ["error", { "props": false }],
"strict": ["error", "global"],
"max-len": ["error", 100, { "ignoreTrailingComments": true }],
"global-require": 0,
"import/no-dynamic-require": 0,
"comma-dangle": ['error', {
"arrays": 'always-multiline',
"objects": 'always-multiline',
"imports": 'always-multiline',
"exports": 'always-multiline',
"functions": 'never'
}],
"no-underscore-dangle": 0,
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment