Files
standardnotes-app-web/.eslintrc
Mo Bitar f6ef4a39e2 Compiles
2020-02-08 12:11:04 -06:00

19 lines
405 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
}
}