消毒机设备
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.

19 lines
464 B

  1. // import eslint_js from '@eslint/js'
  2. // import eslint_ts from 'typescript-eslint';
  3. // import eslint_vue from 'eslint-plugin-vue';
  4. // import vue_parser from 'vue-eslint-parser';
  5. import lintConfig from '@antfu/eslint-config'
  6. export default lintConfig({
  7. vue: true,
  8. markdown: true,
  9. ignores: [],
  10. rules: {
  11. 'no-console': 0,
  12. 'antfu/top-level-function': 0,
  13. 'ts/no-use-before-define': 0,
  14. 'no-alert': 0,
  15. },
  16. globals: { process: 'readonly' },
  17. })