eslint prettier (2)

IT 2018. 9. 12. 17:31

about rules


{
"extends": [
"airbnb",
"prettier",
"prettier/react"
],
"plugins": [
"prettier"
],
"env": {
"browser": true,
"jasmine": true
},




"rules": {
"jsx-a11y/label-has-for": true,

허락하지 않는 표현들
"no-unused-expressions": ["error", {"allowTaggedTemplates": true}],
"react/jsx-filename-extension": [
1,
{
"extensions": [
".js"
]
}
],
"prettier/prettier": [
"error",
{
"singleQuote": true,
"trailingComma": "all",
"printWidth": 100
}
]
}






}


src.zip







'IT' 카테고리의 다른 글

react_20180917  (0) 2018.09.18
react 궁금한 점들  (0) 2018.09.14
front-end side  (0) 2018.09.04
python SSL error  (0) 2018.08.21
how to generate web.xml in Eclipse  (0) 2018.04.27
Posted by roselumi
,