Files
standardnotes-app-web/.eslintrc
2021-01-12 11:44:01 +01:00

24 lines
531 B
Plaintext

{
"extends": ["eslint:recommended", "prettier"],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": "./app/assets/javascripts/tsconfig.json"
},
"rules": {
"standard/no-callback-literal": 0, // Disable this as we have too many callbacks relying on literals
"no-throw-literal": 0,
"no-console": "off",
"semi": 1,
"camelcase": "warn",
"sort-imports": "off"
},
"env": {
"browser": true
},
"globals": {
"SFJS": true,
"__VERSION__": true,
"zip": true
}
}