mirror of
https://github.com/Unleash/unleash.git
synced 2024-12-22 19:07:54 +01:00
26 lines
483 B
Plaintext
26 lines
483 B
Plaintext
{
|
|
"extends": [
|
|
"finn",
|
|
"finn/node",
|
|
"finn-prettier"
|
|
],
|
|
"rules": {
|
|
"no-shadow": 0,
|
|
"prettier/prettier": [
|
|
2,
|
|
{
|
|
"tabWidth": 4,
|
|
"singleQuote": true,
|
|
"trailingComma": "es5",
|
|
"printWidth": 120
|
|
}
|
|
]
|
|
},
|
|
"overrides": [
|
|
{
|
|
"files": ["**/__tests__/*"],
|
|
"env": { "jest": true }
|
|
}
|
|
]
|
|
}
|