mirror of
https://github.com/shlinkio/shlink-web-client.git
synced 2024-12-22 17:10:26 +03:00
22 lines
421 B
Text
22 lines
421 B
Text
{
|
|
"extends": [
|
|
"@shlinkio/js-coding-standard"
|
|
],
|
|
"plugins": ["jest"],
|
|
"env": {
|
|
"jest/globals": true
|
|
},
|
|
"parserOptions": {
|
|
"tsconfigRootDir": ".",
|
|
"createDefaultProgram": true
|
|
},
|
|
"globals": {
|
|
"process": true,
|
|
"setImmediate": true
|
|
},
|
|
"ignorePatterns": ["src/service*.ts"],
|
|
"rules": {
|
|
"complexity": "off",
|
|
"@typescript-eslint/no-unnecessary-type-assertion": "off"
|
|
}
|
|
}
|