mirror of
https://github.com/danilt2000/Alma-vid.git
synced 2025-12-08 19:29:26 +02:00
31 lines
838 B
Plaintext
31 lines
838 B
Plaintext
{
|
|
"extends": ["react-app", "react-app/jest"],
|
|
"rules": {
|
|
"no-unused-vars": "warn",
|
|
"no-console": "warn",
|
|
"quotes": ["warn", "single"],
|
|
"jsx-quotes": ["error", "prefer-double"],
|
|
"prefer-const": "error",
|
|
"indent": ["warn", 4],
|
|
"max-len": ["warn", { "code": 120 }],
|
|
"semi": ["warn", "always"],
|
|
"import/order": [
|
|
"warn",
|
|
{
|
|
"groups": [
|
|
"builtin",
|
|
"external",
|
|
"internal",
|
|
"unknown",
|
|
"parent",
|
|
"sibling",
|
|
"index",
|
|
"object",
|
|
"type"
|
|
],
|
|
"newlines-between": "always-and-inside-groups"
|
|
}
|
|
]
|
|
}
|
|
}
|