shlink-web-client/.eslintrc

32 lines
691 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": {
"max-len": ["error", {
"code": 120,
"ignoreStrings": true,
"ignoreTemplateLiterals": true,
"ignoreComments": true
}],
"no-mixed-operators": "off",
"object-shorthand": "off",
2020-09-06 10:32:16 +03:00
"react/display-name": "off",
2020-11-14 00:44:26 +03:00
"react/react-in-jsx-scope": "off",
2021-02-28 13:13:07 +03:00
"@typescript-eslint/no-extraneous-class": "off",
2020-09-06 10:32:16 +03:00
"@typescript-eslint/require-array-sort-compare": "off"
}
}