get-own-property-symbols
Version:
get-own-property-symbols ========================
40 lines (35 loc) • 642 B
Plain Text
{
"root": true,
"extends": "@ljharb",
"env": {
"browser": true,
"node": true,
},
"rules": {
"eqeqeq": [2, "allow-null"],
"func-name-matching": 0,
"func-style": 1,
"id-length": 0,
"indent": [2, 2],
"max-len": 0,
"max-lines-per-function": 0,
"max-statements-per-line": [2, { "max": 2 }],
"max-statements": 0,
"no-invalid-this": 1,
"no-plusplus": 1,
"no-shadow": 1,
"no-use-before-define": 1,
"one-var-declaration-per-line": 2,
"one-var": [2, "never"],
"sort-keys": 0,
"strict": 1,
},
"overrides": [
{
"files": "**/*.max.js",
"rules": {
"multiline-comment-style": 0,
},
},
],
}