Skip to content

Instantly share code, notes, and snippets.

@davidostermann
Created April 30, 2017 10:14
Show Gist options
  • Save davidostermann/e8fdf907c35cf3605379a88bf75352e9 to your computer and use it in GitHub Desktop.
Save davidostermann/e8fdf907c35cf3605379a88bf75352e9 to your computer and use it in GitHub Desktop.
module.exports = {
"env": {
"browser": true,
"es6": true
},
"extends": "eslint:recommended",
"parser": "babel-eslint",
"parserOptions": {
"sourceType": "module",
"allowImportExportEverywhere": false,
"codeFrame": false,
"ecmaFeatures": {
"experimentalObjectRestSpread": true,
"jsx": true
}
},
"plugins": [
"react"
],
"rules": {
"react/jsx-uses-react": "error",
"react/jsx-uses-vars": "error",
"indent": [
"warn",
2
],
"linebreak-style": [
"warn",
"unix"
],
"quotes": [
"warn",
"single"
],
"semi": [
"warn",
"always"
],
"no-console": 0
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment