用于从props中提取主题数据的插值函数产生“Missing return type on function.”eslint错误。我已经使用声明合并来键入我的主题数据,如typescript文档中所解释的。合并似乎可以正确工作,因为props.theme
是根据我的声明键入的。
可以通过指定插值函数的返回类型来修复此问题${(props): string => props.theme.colors.secondary}
个
但我认为这是不必要的,因为我已经在类型声明文件中指定了props.theme.colors.secondary
的类型。此外,在vs代码错误弹出窗口中,似乎返回类型是已知的(function(...): string
),但错误仍然存在。
代码为GitHub。
// App.tsx
import React from 'react';
import styled, { ThemeProvider } from 'styled-components';
import theme from 'theme/default';
const StyledApp = styled.div`
// The error is caused by this interpolator function
background-color: ${(props) => props.theme.colors.secondary};
`;
// styled.d.ts
import 'styled-components';
// Extend the default theme type
declare module 'styled-components' {
export interface DefaultTheme {
colors: {
primary: string;
primaryLight: string;
primaryLighter: string;
primaryDark: string;
secondary: string;
secondaryLight: string;
secondaryDark: string;
font: string;
};
}
}
// theme/default.tsx
import { DefaultTheme } from 'styled-components';
const theme: DefaultTheme = {
colors: {
primary: 'hsl(0, 98%, 33%)',
primaryLight: 'hsl(359, 98%, 41%)',
primaryLighter: 'hsl(14, 54%, 52%)',
primaryDark: 'hsl(2, 90%, 20%)',
secondary: 'hsl(260, 4%, 31%)',
secondaryLight: 'hsl(35, 13%, 45%)',
secondaryDark: 'hsl(0, 14%, 1%)',
font: 'hsl(317, 7%, 79%)'
}
};
export default theme;
// .eslintrc.js
module.exports = {
env: {
browser: true
},
parser: '@typescript-eslint/parser',
extends: [
'airbnb',
'airbnb/hooks',
'plugin:@typescript-eslint/recommended',
'prettier/@typescript-eslint',
'plugin:prettier/recommended'
],
parserOptions: {
ecmaVersion: 2020,
sourceType: 'module'
},
rules: {
'react/jsx-filename-extension': [1, { extensions: ['.jsx', '.tsx'] }],
'react/prop-types': 'off'
},
settings: {
'import/extensions': ['.js', '.jsx', '.ts', '.tsx'],
'import/parsers': {
'@typescript-eslint/parser': ['.ts', '.tsx']
},
'import/resolver': {
node: {
paths: 'src',
extensions: ['.js', '.jsx', '.ts', '.tsx']
}
}
}
};
// tsconfig.json
{
"compilerOptions": {
"target": "es5",
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react",
"baseUrl": "src"
},
"include": ["src"]
}
// deps
"@types/react": "16.9.2",
"@types/react-dom": "16.9.0",
"@types/styled-components": "^4.1.18",
"overmind": "^19.1.1",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-scripts": "3.1.1",
"styled-components": "^4.3.2",
"typescript": "3.6.2"
"@typescript-eslint/eslint-plugin": "^2.1.0",
"@typescript-eslint/parser": "^2.1.0",
"babel-core": "^7.0.0-bridge.0",
"eslint": "^6.1.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.2.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^1.7.0",
"prettier": "^1.18.2"
vs代码
中的错误弹出
2条答案
按热度按时间k7fdbhmy1#
以下作品:
字符串
我在
index.tsx
中设置了ThemeProviders
,如下所述:https://stackoverflow.com/a/58462124/2771889flvtvl502#
我可以通过将以下规则添加到
.eslintrc.js
来解决这个问题字符串
它允许函数表达式没有显式定义的返回类型,这消除了样式化组件的返回函数中缺少返回类型的错误,因为它们是函数表达式。
这种解决方案只是关闭错误,而不是直接修复它。