mirror of
https://github.com/rjNemo/react_template
synced 2026-06-06 07:46:41 +00:00
24 lines
907 B
JavaScript
24 lines
907 B
JavaScript
module.exports = {
|
|
parser: '@typescript-eslint/parser', // Specifies the ESLint parser
|
|
parserOptions: {
|
|
ecmaVersion: 2020, // Allows for the parsing of modern ECMAScript features
|
|
sourceType: 'module', // Allows for the use of imports
|
|
ecmaFeatures: {
|
|
jsx: true // Allows for the parsing of JSX
|
|
}
|
|
},
|
|
settings: {
|
|
react: {
|
|
version: 'detect' // Tells eslint-plugin-react to automatically detect the version of React to use
|
|
}
|
|
},
|
|
extends: [
|
|
'plugin:react/recommended', // Uses the recommended rules from @eslint-plugin-react
|
|
'plugin:@typescript-eslint/recommended' // Uses the recommended rules from @typescript-eslint/eslint-plugin
|
|
],
|
|
rules: {
|
|
'react/prop-types': 0
|
|
// Place to specify ESLint rules. Can be used to overwrite rules specified from the extended configs
|
|
// e.g. "@typescript-eslint/explicit-function-return-type": "off",
|
|
}
|
|
};
|