Skip to content

Instantly share code, notes, and snippets.

@az1979
Last active January 4, 2018 09:57
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 az1979/1ac1dcc46f71d9446600e27e06218224 to your computer and use it in GitHub Desktop.
Save az1979/1ac1dcc46f71d9446600e27e06218224 to your computer and use it in GitHub Desktop.
Reactが動作するサンプルプロジェクトの.eslintrc.json
{
"env": {
"browser": true,
"commonjs": true,
"es6": true
},
"parserOptions": {
"ecmaVersion": 2017,
"sourceType": "module",
"ecmaFeatures": {
"experimentalObjectRestSpread": true,
"jsx": true
}
},
"extends": "airbnb",
"rules": {
"comma-dangle": 0,
"function-paren-newline": 0
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment