You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
668 B
31 lines
668 B
{ |
|
"extends": ["prettier", "react-app", "react-app/jest"], |
|
"plugins": ["prettier"], |
|
"rules": { |
|
"import/no-anonymous-default-export": "off", |
|
"curly": "warn", |
|
"no-console": [ |
|
"warn", |
|
{ |
|
"allow": ["warn", "error", "info"] |
|
} |
|
], |
|
"no-else-return": "warn", |
|
"no-useless-return": "warn", |
|
"prefer-const": [ |
|
"warn", |
|
{ |
|
"destructuring": "all" |
|
} |
|
], |
|
"prefer-template": "warn", |
|
"prettier/prettier": "warn", |
|
"no-restricted-syntax": [ |
|
"warn", |
|
{ |
|
"selector": "JSXText[value=/\\w/]", |
|
"message": "Use 't(...)' instead of literal text in JSX" |
|
} |
|
] |
|
} |
|
}
|
|
|