Netfan
2021-05-22 d8ff30d9ece53e006e5e58894461adeeb3b273e0
.eslintrc.js
@@ -1,4 +1,6 @@
module.exports = {
// @ts-check
const { defineConfig } = require('eslint-define-config');
module.exports = defineConfig({
  root: true,
  env: {
    browser: true,
@@ -13,7 +15,6 @@
    jsxPragma: 'React',
    ecmaFeatures: {
      jsx: true,
      tsx: true,
    },
  },
  extends: [
@@ -58,7 +59,6 @@
    'vue/multiline-html-element-content-newline': 'off',
    'vue/singleline-html-element-content-newline': 'off',
    'vue/attribute-hyphenation': 'off',
    // 'vue/html-self-closing': 'off',
    'vue/require-default-prop': 'off',
    'vue/html-self-closing': [
      'error',
@@ -73,4 +73,4 @@
      },
    ],
  },
};
});