.eslintrc 198 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 { "root": true, "extends": "@ljharb", "env": { "browser": true, "node": true, }, "globals": { "globalThis": false, }, "rules": { "max-statements-per-line": [2, { "max": 2 }] } }