Skip to content

Commit ca2fa6c

Browse files
committed
Add another version of eslint.js
1 parent dd05a9d commit ca2fa6c

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

.eslint.another.js

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
module.exports = {
2+
parser: '@typescript-eslint/parser', // Specifies the ESLint parser
3+
extends: [
4+
'plugin:react/recommended', // Uses the recommended rules from @eslint-plugin-react
5+
'plugin:@typescript-eslint/recommended', // Uses the recommended rules from the @typescript-eslint/eslint-plugin
6+
'prettier/@typescript-eslint', // Uses eslint-config-prettier to disable ESLint rules from @typescript-eslint/eslint-plugin that would conflict with prettier
7+
'plugin:prettier/recommended', // Enables eslint-plugin-prettier and displays prettier errors as ESLint errors. Make sure this is always the last configuration in the extends array.
8+
],
9+
parserOptions: {
10+
ecmaVersion: 2018, // Allows for the parsing of modern ECMAScript features
11+
sourceType: 'module', // Allows for the use of imports
12+
ecmaFeatures: {
13+
jsx: true, // Allows for the parsing of JSX
14+
},
15+
},
16+
rules: {
17+
// Place to specify ESLint rules. Can be used to overwrite rules specified from the extended configs
18+
// e.g. "@typescript-eslint/explicit-function-return-type": "off",
19+
},
20+
settings: {
21+
react: {
22+
version: 'detect', // Tells eslint-plugin-react to automatically detect the version of React to use
23+
},
24+
},
25+
};

0 commit comments

Comments
 (0)