vue/.eslintrc

15 lines
249 B
Plaintext
Raw Normal View History

2016-05-06 07:11:15 +08:00
{
"root": true,
2016-05-12 08:03:18 +08:00
"parser": "babel-eslint",
2016-05-13 00:34:54 +08:00
"extends": "vue",
"plugins": ["flowtype"],
"globals": {
"__WEEX__": true
},
2016-05-13 00:34:54 +08:00
"rules": {
2016-11-08 06:31:25 +08:00
"no-useless-escape": 0,
"flowtype/define-flow-type": 1,
"flowtype/use-flow-type": 1
2016-05-13 00:34:54 +08:00
}
2016-05-06 07:11:15 +08:00
}