mirror of
https://github.com/usatiuk/ustk-todolist.git
synced 2025-10-28 15:47:48 +01:00
31 lines
502 B
JSON
31 lines
502 B
JSON
{
|
|
"extends": [
|
|
"airbnb",
|
|
"plugin:jest/recommended",
|
|
"prettier",
|
|
"prettier/react"
|
|
],
|
|
|
|
"plugins": ["jest", "prettier"],
|
|
"rules": {
|
|
"react/jsx-filename-extension": [
|
|
1,
|
|
{
|
|
"extensions": [".js", ".jsx"]
|
|
}
|
|
],
|
|
"linebreak-style": "off",
|
|
"no-unused-expressions": [
|
|
"error",
|
|
{
|
|
"allowTernary": true
|
|
}
|
|
],
|
|
"react/forbid-prop-types": "off",
|
|
"prettier/prettier": "error"
|
|
},
|
|
"env": {
|
|
"browser": true
|
|
}
|
|
}
|