Files
standardnotes-app-web/.eslintrc

19 lines
402 B
Plaintext

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