富茂A端打印模板内嵌编辑器
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

17 line
308 B

  1. // https://eslint.org/docs/user-guide/configuring
  2. module.exports = {
  3. "extends": [
  4. "standard",
  5. "plugin:vue/recommended"
  6. ],
  7. "rules": {
  8. "semi": "off",
  9. "no-new": "off",
  10. "vue/valid-template-root": "off",
  11. "vue/require-default-prop": "off",
  12. "vue/require-prop-types": "off"
  13. }
  14. }