1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-01-11 00:08:30 +01:00
unleash.unleash/src/migrations/.eslintrc
Gastón Fournier 0943ff8f49
Fix OOM with eslint in migrations (#2545)
## About the changes
When adding a new migration, we might run out of memory. Migrations have
only JS files and we're running these through TS parser. Removing TS
config reference from `.eslintrc` proved to solve the issue while
running local manual tests

This still lints migration files but using JS syntax
2022-11-28 15:16:19 +01:00

15 lines
210 B
Plaintext

{
"env": {},
"extends": [],
"parser": "",
"plugins": [],
"rules": {},
"settings": {},
"parserOptions": {},
"overrides": [
{
"files": "*.js"
}
]
}