mirror of
https://github.com/valentineus/webos-service-types.git
synced 2025-05-16 02:41:18 +03:00
26 lines
434 B
JSON
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"
|
|
]
|
|
}
|
|
}
|