Files
standardnotes-app-web/.eslintrc
2019-12-16 16:26:51 -06:00

15 lines
283 B
Plaintext

{
"extends": ["semistandard", "prettier"],
"rules": {
"standard/no-callback-literal": 0 // Disable this as we have too many callbacks relying on literals
},
"env": {
"browser": true
},
"globals": {
"SFJS": true,
"__VERSION__": true,
"zip": true
}
}