.eslintrc 249 B

1234567891011121314
  1. {
  2. "root": true,
  3. "parser": "babel-eslint",
  4. "extends": "vue",
  5. "plugins": ["flowtype"],
  6. "globals": {
  7. "__WEEX__": true
  8. },
  9. "rules": {
  10. "no-useless-escape": 0,
  11. "flowtype/define-flow-type": 1,
  12. "flowtype/use-flow-type": 1
  13. }
  14. }