forked from rohitagr0310/Bookflow-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
51 lines (43 loc) · 1.27 KB
/
.eslintrc.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
module.exports = {
env: {
browser: true,
es2021: true
},
extends: ["standard", "plugin:react/recommended"],
overrides: [
{
env: {
node: true
},
files: [".eslintrc.{js,cjs}"],
parserOptions: {
sourceType: "script"
}
}
],
parserOptions: {
ecmaVersion: "latest",
sourceType: "module"
},
plugins: ["react"],
rules: {
// Enforce consistent indentation (use tabs or spaces)
indent: ["error", 2],
// Enforce single quotes for string literals
quotes: ["error", "double"],
// Require semicolons at the end of statements
semi: ["error", "always"],
// Enforce consistent spacing inside curly braces
"object-curly-spacing": ["error", "always"],
// Enforce consistent spacing before and after arrow functions
"arrow-spacing": ["error", { before: true, after: true }],
// Require variable declarations to be at the top of their scope
"vars-on-top": "error",
// Require the use of triple equals (===) and not double equals (==)
eqeqeq: "error",
// Enforce a maximum line length to improve readability
"max-len": ["error", { code: 250 }],
// Require consistent return values in array methods like map and forEach
"array-callback-return": "error"
}
};