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.
55 lines
923 B
55 lines
923 B
{ |
|
"env": { |
|
"browser": true, |
|
"es6": true, |
|
"node": true |
|
}, |
|
"extends": [ |
|
"plugin:react/recommended", |
|
"plugin:prettier/recommended", |
|
"prettier/react" |
|
], |
|
"globals": { |
|
"Atomics": "readonly", |
|
"SharedArrayBuffer": "readonly", |
|
"React": true |
|
}, |
|
"parserOptions": { |
|
"ecmaFeatures": { |
|
"jsx": true |
|
}, |
|
"ecmaVersion": 2018, |
|
"sourceType": "module" |
|
}, |
|
"plugins": [ |
|
"prettier", |
|
"react" |
|
], |
|
"settings": { |
|
"react": { |
|
"version": "detect" |
|
} |
|
}, |
|
"ignorePatterns": [ |
|
"src/infrastructure/", |
|
"src/react-lazyload/" |
|
], |
|
"rules": { |
|
"prettier/prettier": "warn", |
|
"react/jsx-indent": [ |
|
"error", |
|
2, |
|
{ |
|
"indentLogicalExpressions": true |
|
} |
|
], |
|
"react/prop-types": "off", |
|
"react/jsx-no-target-blank": "off", |
|
"no-unused-vars": [ |
|
"warn", |
|
{ |
|
"args": "none" |
|
} |
|
] |
|
} |
|
} |