mirror of
https://github.com/NginxProxyManager/nginx-proxy-manager.git
synced 2025-08-16 13:56:52 +00:00
69 lines
899 B
JSON
69 lines
899 B
JSON
{
|
|
"env": {
|
|
"node": true,
|
|
"es6": true
|
|
},
|
|
"extends": [
|
|
"eslint:recommended"
|
|
],
|
|
"globals": {
|
|
"Atomics": "readonly",
|
|
"SharedArrayBuffer": "readonly"
|
|
},
|
|
"parserOptions": {
|
|
"ecmaVersion": 2018,
|
|
"sourceType": "module"
|
|
},
|
|
"plugins": [
|
|
"align-assignments"
|
|
],
|
|
"rules": {
|
|
"indent": [
|
|
"error",
|
|
"tab"
|
|
],
|
|
"linebreak-style": [
|
|
"error",
|
|
"unix"
|
|
],
|
|
"quotes": [
|
|
"error",
|
|
"single"
|
|
],
|
|
"semi": [
|
|
"error",
|
|
"always"
|
|
],
|
|
"key-spacing": [
|
|
"error",
|
|
{
|
|
"align": "value"
|
|
}
|
|
],
|
|
"comma-spacing": [
|
|
"error",
|
|
{
|
|
"before": false,
|
|
"after": true
|
|
}
|
|
],
|
|
"func-call-spacing": [
|
|
"error",
|
|
"never"
|
|
],
|
|
"keyword-spacing": [
|
|
"error",
|
|
{
|
|
"before": true
|
|
}
|
|
],
|
|
"no-irregular-whitespace": "error",
|
|
"no-unused-expressions": 0,
|
|
"align-assignments/align-assignments": [
|
|
2,
|
|
{
|
|
"requiresOnly": false
|
|
}
|
|
]
|
|
}
|
|
} |