Disable linebreak-style in .eslintrc

This commit is contained in:
Jerome Wu 2019-10-25 19:15:47 +08:00
parent 50d5cc03a6
commit feee8652dd

View File

@ -1,6 +1,7 @@
{ {
"extends": "airbnb-base", "extends": "airbnb-base",
"rules": { "rules": {
"no-underscore-dangle": 0 "no-underscore-dangle": 0,
"linebreak-style": 0,
} }
} }