-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
35 lines (35 loc) · 878 Bytes
/
.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
module.exports = {
parser: "@typescript-eslint/parser",
env: {
browser: true,
es2021: true,
node: true,
},
plugins: ["react", "prettier", "@typescript-eslint"],
extends: [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:react/recommended",
"plugin:prettier/recommended",
],
overrides: [],
parserOptions: {
ecmaVersion: "latest",
sourceType: "module",
},
settings: {
react: {
version: "detect",
},
},
ignorePatterns: ["node_modules/", "_explicacoes/"],
// Cherry of the Cake
rules: {
//"no-only-tests/no-only-tests": "error",
"no-console": ["error", { allow: ["warn", "error"] }],
"react/no-unknown-property": ["error", { ignore: ["jsx", "global"] }],
"prettier/prettier": ["error", {
"endOfLine":"auto"
}],
},
};