mirror of
https://github.com/shlinkio/shlink-web-client.git
synced 2025-01-11 02:37:22 +03:00
24 lines
538 B
Text
24 lines
538 B
Text
{
|
|
"extends": [
|
|
"@shlinkio/js-coding-standard"
|
|
],
|
|
"plugins": ["jest"],
|
|
"env": {
|
|
"jest/globals": true
|
|
},
|
|
"parserOptions": {
|
|
"tsconfigRootDir": ".",
|
|
"createDefaultProgram": true
|
|
},
|
|
"globals": {
|
|
"process": true,
|
|
"setImmediate": true
|
|
},
|
|
"rules": {
|
|
"no-nonoctal-decimal-escape": "off",
|
|
"@typescript-eslint/no-unsafe-assignment": "off",
|
|
"@typescript-eslint/no-unsafe-member-access": "off",
|
|
"@typescript-eslint/ban-types": "off",
|
|
"@typescript-eslint/naming-convention": "off"
|
|
}
|
|
}
|