ESLint
Install
npm i eslint eslint-plugin-react @typescript-eslint/parser @typescript-eslint/eslint-pluginConfigure
module.exports = {
parser: '@typescript-eslint/parser',
parserOptions: {
project: './tsconfig.json',
},
plugins: ['@typescript-eslint'],
extends: [
'plugin:react/recommended',
'plugin:@typescript-eslint/recommended',
],
rules: {
// Overwrite rules specified from the extended configs e.g.
// "@typescript-eslint/explicit-function-return-type": "off",
}
}Run
Configure VSCode
Last updated