typescript - 使用 Firebase config.ts 文件设置 Vue 3 + Quasar 时,出现 eslint 错误 : Unsafe assignment of an `any` value

标签 typescript vue.js quasar-framework typescript-eslint

我刚刚设置了一个新的 Vue 3 Quasar使用 Quasar CLI 的项目。

我创建了一个新的 src/firebase/config.ts 文件来存储我的 firebase 配置,它看起来像这样:

// Import the functions you need from the SDKs you need
import { initializeApp } from 'firebase/app';
// TODO: Add SDKs for Firebase products that you want to use
// https://firebase.google.com/docs/web/setup#available-libraries
import { getFirestore, serverTimestamp } from 'firebase/firestore';
import { getAuth } from 'firebase/auth';
import { getStorage } from 'firebase/storage';

// Your web app's Firebase configuration
const firebaseConfig = {
  apiKey: 'REDACTED',
  authDomain: 'REDACTED',
  projectId: 'REDACTED',
  storageBucket: 'REDACTED',
  messagingSenderId: 'REDACTED',
  appId: 'REDACTED',
  measurementId: 'REDACTED',
};

// Initialize Firebase
const firebaseApp = initializeApp(firebaseConfig);

//Export modules
export const db = getFirestore(firebaseApp);
export const store = getStorage(firebaseApp);
export const auth = getAuth(firebaseApp);
export const timestamp = serverTimestamp();

但是 const firebaseApp = initializeApp(firebaseConfig); 行抛出 Unsafe assignment of an 'any' value 的 eslint 错误。 eslint@typescript-eslint/no-unsafe-赋值

这是Quasar CLI在项目创建过程中创建的.eslintrc.js文件:

const { resolve } = require('path');
module.exports = {
  // https://eslint.org/docs/user-guide/configuring#configuration-cascading-and-hierarchy
  // This option interrupts the configuration hierarchy at this file
  // Remove this if you have an higher level ESLint config file (it usually happens into a monorepos)
  root: true,

  // https://eslint.vuejs.org/user-guide/#how-to-use-custom-parser
  // Must use parserOptions instead of "parser" to allow vue-eslint-parser to keep working
  // `parser: 'vue-eslint-parser'` is already included with any 'plugin:vue/**' config and should be omitted
  parserOptions: {
    // https://github.com/typescript-eslint/typescript-eslint/tree/master/packages/parser#configuration
    // https://github.com/TypeStrong/fork-ts-checker-webpack-plugin#eslint
    // Needed to make the parser take into account 'vue' files
    extraFileExtensions: ['.vue'],
    parser: '@typescript-eslint/parser',
    project: resolve(__dirname, './tsconfig.json'),
    tsconfigRootDir: __dirname,
    ecmaVersion: 2018, // Allows for the parsing of modern ECMAScript features
    sourceType: 'module' // Allows for the use of imports
  },

  env: {
    browser: true
  },

  // Rules order is important, please avoid shuffling them
  extends: [
    // Base ESLint recommended rules
    // 'eslint:recommended',

    // https://github.com/typescript-eslint/typescript-eslint/tree/master/packages/eslint-plugin#usage
    // ESLint typescript rules
    'plugin:@typescript-eslint/recommended',
    // consider disabling this class of rules if linting takes too long
    'plugin:@typescript-eslint/recommended-requiring-type-checking',

    // Uncomment any of the lines below to choose desired strictness,
    // but leave only one uncommented!
    // See https://eslint.vuejs.org/rules/#available-rules
    'plugin:vue/vue3-essential', // Priority A: Essential (Error Prevention)
    // 'plugin:vue/vue3-strongly-recommended', // Priority B: Strongly Recommended (Improving Readability)
    // 'plugin:vue/vue3-recommended', // Priority C: Recommended (Minimizing Arbitrary Choices and Cognitive Overhead)

    // https://github.com/prettier/eslint-config-prettier#installation
    // usage with Prettier, provided by 'eslint-config-prettier'.
    'prettier'
  ],

  plugins: [
    // required to apply rules which need type information
    '@typescript-eslint',

    // https://eslint.vuejs.org/user-guide/#why-doesn-t-it-work-on-vue-file
    // required to lint *.vue files
    'vue',

    // https://github.com/typescript-eslint/typescript-eslint/issues/389#issuecomment-509292674
    // Prettier has not been included as plugin to avoid performance impact
    // add it as an extension for your IDE
  ],

  globals: {
    ga: 'readonly', // Google Analytics
    cordova: 'readonly',
    __statics: 'readonly',
    __QUASAR_SSR__: 'readonly',
    __QUASAR_SSR_SERVER__: 'readonly',
    __QUASAR_SSR_CLIENT__: 'readonly',
    __QUASAR_SSR_PWA__: 'readonly',
    process: 'readonly',
    Capacitor: 'readonly',
    chrome: 'readonly',
    defineProps: 'readonly',
    defineEmits: 'readonly',
    defineExpose: 'readonly',
    withDefaults: 'readonly'
  },

  // add your custom rules here
  rules: {
    'prefer-promise-reject-errors': 'off',

    // TypeScript
    quotes: ['warn', 'single', { avoidEscape: true }],
    '@typescript-eslint/explicit-function-return-type': 'off',
    '@typescript-eslint/explicit-module-boundary-types': 'off',

    // allow debugger during development only
    "no-console": process.env.NODE_ENV === "production" ? "warn" : "off",
    "no-debugger": process.env.NODE_ENV === "production" ? "warn" : "off",
  }
}

我不确定为什么会看到此错误。

使用 Vue CLI 而不是 Quasar CLI 创建项目时,我没有收到相同的错误。

由于 Vue CLI 创建了与 Quasar CLI .eslintrc.js 文件不同类型的 .eslintrc.js ,我认为问题是由Quasar CLI。

这是使用 Vue CLI 创建的项目中的 .eslintrc.js 文件的副本。

也许为了修复错误,该版本的某些部分可以安全地合并到 Quasar 创建的 .eslintrc.js 文件中?

module.exports = {
  root: true,
  env: {
    node: true,
  },
  extends: [
    "plugin:vue/vue3-essential",
    "eslint:recommended",
    "@vue/typescript/recommended",
    "@vue/prettier",
    "@vue/prettier/@typescript-eslint",
  ],
  parserOptions: {
    ecmaVersion: 2020,
  },
  rules: {
    "no-console": process.env.NODE_ENV === "production" ? "warn" : "off",
    "no-debugger": process.env.NODE_ENV === "production" ? "warn" : "off",
  },
  globals: {
    defineProps: 'readonly',
    defineEmits: 'readonly',
    defineExpose: 'readonly',
    withDefaults: 'readonly'
  }
};

最佳答案

我不确定这是否有效,但请尝试声明您的配置的类型:

const firebaseConfig: FirebaseOptions = ...

对于您的 Firebase 应用程序:

const firebaseApp: FirebaseApp = initializeApp(firebaseConfig);

并导入这些类型:

import { FirebaseOptions, FirebaseApp, initializeApp } from "firebase/app";

关于typescript - 使用 Firebase config.ts 文件设置 Vue 3 + Quasar 时,出现 eslint 错误 : Unsafe assignment of an `any` value,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/70555608/

相关文章:

javascript - 如何更新 ionic 2 侧边菜单中的值

javascript - 由之前的 onclick 处理程序执行的 VueJS keyup 处理程序

javascript - Laravel 和 VueJS,访问 Vue 实例。

javascript - 使用 vuejs 对表行进行动态倒计时

vue.js - 如何使用 Quasar QexpansionItem 制作递归菜单

javascript - 如何发出 PUT API HTTPS 请求 [reactJS]

typescript - 如何用 Chai 期望替换 Jest 期望的类型?

Typescript 定义文件内部模块

vue.js - 我应该如何处理 Vuex 中的事件?

javascript - Vue 子组件属性不起作用