shlink-web-client/.eslintrc

29 lines
688 B
Text
Raw Normal View History

{
2020-09-06 10:32:16 +03:00
"extends": [
"@shlinkio/js-coding-standard"
],
"plugins": ["jest"],
"env": {
"jest/globals": true
},
2020-08-22 09:06:41 +03:00
"parserOptions": {
"tsconfigRootDir": ".",
"createDefaultProgram": true
},
"globals": {
"process": true,
"setImmediate": true
},
2020-09-06 10:32:16 +03:00
"rules": {
"@typescript-eslint/no-unsafe-assignment": "off",
"@typescript-eslint/no-unsafe-member-access": "off",
"@typescript-eslint/no-unsafe-call": "off",
"@typescript-eslint/no-unsafe-return": "off",
"@typescript-eslint/naming-convention": "off",
"@typescript-eslint/ban-types": "off",
"@typescript-eslint/no-base-to-string": "off",
"no-nonoctal-decimal-escape": "off"
2020-09-06 10:32:16 +03:00
}
}