mirror of
https://kevinblog.sytes.net/Code/Jibo-Revival-Group/Zos.git
synced 2026-06-15 21:56:32 +00:00
38 lines
1.1 KiB
JSON
38 lines
1.1 KiB
JSON
{
|
|
"rules": {
|
|
"curly": true,
|
|
"triple-equals": true,
|
|
"semicolon": [
|
|
true,
|
|
"always"
|
|
],
|
|
"no-var-keyword": true,
|
|
"no-unused-expression": true,
|
|
"no-empty": true,
|
|
"jsdoc-format": true,
|
|
"no-duplicate-variable": true,
|
|
"no-debugger": true,
|
|
"member-ordering": [
|
|
true,
|
|
{
|
|
"order": [
|
|
"public-static-field",
|
|
"protected-static-field",
|
|
"private-static-field",
|
|
"public-instance-field",
|
|
"protected-instance-field",
|
|
"private-instance-field",
|
|
"public-static-method",
|
|
"protected-static-method",
|
|
"private-static-method",
|
|
"public-constructor",
|
|
"protected-constructor",
|
|
"private-constructor",
|
|
"public-instance-method",
|
|
"protected-instance-method",
|
|
"private-instance-method"
|
|
]
|
|
}
|
|
]
|
|
}
|
|
} |