-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc.cjs
57 lines (56 loc) · 1.62 KB
/
.eslintrc.cjs
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
52
53
54
55
56
57
/* eslint-disable @typescript-eslint/no-var-requires */
const path = require("path");
module.exports = {
extends: [
// Chúng ta sẽ dùng các rule mặc định từ các plugin mà chúng ta đã cài.
"eslint:recommended",
"plugin:react/recommended",
"plugin:react-hooks/recommended",
"plugin:import/recommended",
"plugin:import/typescript",
"plugin:jsx-a11y/recommended",
"plugin:@typescript-eslint/recommended",
// Disable các rule mà eslint xung đột với prettier.
// Để cái này ở dưới để nó override các rule phía trên!.
"eslint-config-prettier",
"prettier",
],
plugins: ["prettier"],
settings: {
react: {
// Nói eslint-plugin-react tự động biết version của React.
version: "detect",
},
// Nói ESLint cách xử lý các import
"import/resolver": {
node: {
paths: [path.resolve(__dirname, "")],
extensions: [".js", ".jsx", ".ts", ".tsx"],
},
},
},
env: {
node: true,
},
rules: {
// Tắt rule yêu cầu import React trong file jsx
"react/react-in-jsx-scope": "off",
// Cảnh báo khi thẻ <a target='_blank'> mà không có rel="noreferrer"
"react/jsx-no-target-blank": "warn",
// Tăng cường một số rule prettier (copy từ file .prettierrc qua)
"prettier/prettier": [
"warn",
{
arrowParens: "always",
semi: false,
trailingComma: "none",
tabWidth: 2,
endOfLine: "auto",
useTabs: false,
singleQuote: true,
printWidth: 120,
jsxSingleQuote: true,
},
],
},
};