sf-i-reporting
Version:
Superflows Reporting Component
45 lines • 696 B
Plain Text
{
"env": {
"browser": true,
"es2021": true,
"node": true,
"commonjs": true
},
"extends": [
"eslint:recommended",
"plugin:node/recommended"
],
"parserOptions": {
"ecmaVersion": 12,
"sourceType": "module"
},
"rules": {
"indent": [
"error",
2
],
"linebreak-style": [
"error",
"unix"
],
"quotes": [
"error",
"single"
],
"semi": [
"error",
"always"
],
"no-unknown-attribute": [
"error",
{
"globalAttributes": [
"mandatory"
]
}
]
},
"globals": {
"Buffer": "readonly"
}
}