Files
pulse/public/.eslintrc.json
T

19 lines
492 B
JSON
Raw Normal View History

{
"env": { "browser": true, "es2021": true },
"parserOptions": { "ecmaVersion": 2021, "sourceType": "script" },
"globals": {
"lt": "readonly",
"Pulse": "writable",
"CSRF_TOKEN": "readonly",
"CURRENT_USER": "readonly",
"PULSE_CONFIG": "readonly"
},
"rules": {
"no-unused-vars": "warn",
"no-empty": "warn",
"no-inner-declarations": "warn",
"semi": ["error", "always"],
"eqeqeq": "warn"
}
}