freeCodeCamp/.eslintrc.json

14 lines
241 B
JSON
Raw Normal View History

{
2019-02-18 18:23:30 +00:00
"root": true,
2019-02-18 22:43:11 +00:00
"extends": ["@freecodecamp/eslint-config", "prettier", "prettier/react"],
"plugins": ["prettier"],
"rules": {
"prettier/prettier": "error"
},
"settings": {
"react": {
"version": "16.4.2"
}
}
}