mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2025-11-09 20:12:26 +10:00
34 lines
705 B
JSON
34 lines
705 B
JSON
{
|
|
"extends": ["plugin:@nx/react", "../../.eslintrc.json"],
|
|
"ignorePatterns": ["!**/*"],
|
|
"overrides": [
|
|
{
|
|
"files": ["*.ts", "*.tsx", "*.js", "*.jsx"],
|
|
"rules": {
|
|
// eslint
|
|
"@typescript-eslint/no-require-imports": "off",
|
|
|
|
// react
|
|
"react/no-unescaped-entities": "off",
|
|
"react/jsx-sort-props": [
|
|
"error",
|
|
{
|
|
"reservedFirst": true,
|
|
"callbacksLast": true,
|
|
"shorthandFirst": true,
|
|
"noSortAlphabetically": true
|
|
}
|
|
]
|
|
}
|
|
},
|
|
{
|
|
"files": ["*.ts", "*.tsx"],
|
|
"rules": {}
|
|
},
|
|
{
|
|
"files": ["*.js", "*.jsx"],
|
|
"rules": {}
|
|
}
|
|
]
|
|
}
|