mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-02 00:50:57 +01:00
19 lines
357 B
Text
19 lines
357 B
Text
{
|
|
"root": true,
|
|
"extends": [
|
|
"typescript",
|
|
"prettier",
|
|
"plugin:optimize-regex/recommended",
|
|
"plugin:sonarjs/recommended"
|
|
],
|
|
"plugins": ["eslint-plugin-optimize-regex", "sonarjs"],
|
|
"rules": {
|
|
"sonarjs/cognitive-complexity": ["warn", 20]
|
|
},
|
|
"env": {
|
|
"es6": true
|
|
},
|
|
"parserOptions": {
|
|
"sourceType": "module"
|
|
}
|
|
}
|