-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
53 lines (53 loc) · 1.42 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
52
53
/** @type {import("eslint").ESLint.Options} */
module.exports = {
env: {
es2021: true,
},
extends: ["plugin:prettier/recommended", "plugin:import/typescript"],
parserOptions: {
ecmaVersion: 12,
},
parser: "@typescript-eslint/parser",
plugins: ["prettier", "import", "@typescript-eslint"],
rules: {
"import/order": ["warn", { "newlines-between": "always" }],
quotes: ["error", "double"],
semi: ["error", "always"],
//To avoid problems with prettier extension
indent: "off",
"no-console": "warn",
"prettier/prettier": [
"error",
{
singleQuote: false,
traillingComma: "all",
semi: true,
tabWidth: 2,
printWidth: 150,
bracketSpacing: true,
arrowParens: "always",
endOfLine: "auto",
},
],
"no-unused-vars": [
"warn",
{
args: "after-used",
ignoreRestSiblings: true,
argsIgnorePattern: "^_",
varsIgnorePattern: "^_",
},
],
"padding-line-between-statements": [
"error",
{ blankLine: "always", prev: "*", next: "return" },
{ blankLine: "always", prev: ["const", "let", "var"], next: "*" },
{
blankLine: "any",
prev: ["const", "let", "var"],
next: ["const", "let", "var"],
},
],
},
ignorePatterns: ["node_modules", "storybook-static", "dist", ".next", "coverage", "build", "public", "__snapshots__"],
};