@icure/cardinal-prescription-be-react
Version:
This is a Belgian-specific React application for healthcare professionals to manage electronic prescriptions with SAM. Created by iCure.
33 lines (32 loc) • 886 B
Plain Text
{
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 2020,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true,
"tsx": true
}
},
"plugins": ["@typescript-eslint"],
"extends": ["plugin:react/recommended", "plugin:@typescript-eslint/recommended", "plugin:prettier/recommended"],
"env": {
"browser": true,
"node": true,
"es6": true
},
"settings": {
"react": {
"version": "detect"
}
},
"rules": {
"semi": ["error", "never", { "beforeStatementContinuationChars": "never" }],
"max-len": ["error", 180],
"jsx-a11y/no-static-element-interactions": 0,
"react/display-name": [0],
"react/jsx-indent-props": ["error", 2],
"react/jsx-filename-extension": [1, { "extensions": [".js", ".jsx", ".tx", ".tsx"] }],
"react/jsx-closing-bracket-location": [2, "tag-aligned"]
}
}