0
mirror of https://github.com/valentineus/webos-service-types.git synced 2025-05-15 02:31:18 +03:00
webos-service-types/.eslintrc.json
Valentin Popov 80283102f1
Configuration updates
Signed-off-by: Valentin Popov <info@valentineus.link>
2020-02-20 16:40:23 +04:00

26 lines
434 B
JSON

{
"env": {
"browser": true,
"es6": true,
"node": true
},
"extends": [
"@valentineus/eslint-config/typescript"
],
"globals": {
"Atomics": "readonly",
"SharedArrayBuffer": "readonly"
},
"parserOptions": {
"ecmaVersion": 2020,
"project": "tsconfig.json",
"sourceType": "module",
"tsconfigRootDir": "."
},
"rules": {
"unicorn/prevent-abbreviations": [
"off"
]
}
}