Files
standardnotes-app-web/.eslintrc
2021-01-18 13:06:01 +01:00

18 lines
389 B
Plaintext

{
"extends": ["eslint:recommended", "prettier"],
"parser": "@typescript-eslint/parser",
"rules": {
"standard/no-callback-literal": "off", // Disable this as we have too many callbacks relying on literals
"no-throw-literal": "off",
"camelcase": "off"
},
"env": {
"browser": true
},
"globals": {
"SFJS": true,
"__VERSION__": true,
"zip": true
}
}