mirror of
https://github.com/Unleash/unleash.git
synced 2025-01-11 00:08:30 +01:00
0943ff8f49
## 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
15 lines
210 B
Plaintext
15 lines
210 B
Plaintext
{
|
|
"env": {},
|
|
"extends": [],
|
|
"parser": "",
|
|
"plugins": [],
|
|
"rules": {},
|
|
"settings": {},
|
|
"parserOptions": {},
|
|
"overrides": [
|
|
{
|
|
"files": "*.js"
|
|
}
|
|
]
|
|
}
|