eslint-config/.eslintrc.json
Valentin Popov 9509148e9d
Formed structure of the repository
Signed-off-by: Valentin Popov <info@valentineus.link>
2020-02-13 14:30:54 +04:00

16 lines
243 B
JSON

{
"env": {
"es6": true,
"node": true
},
"extends": "./javascript",
"globals": {
"Atomics": "readonly",
"SharedArrayBuffer": "readonly"
},
"parserOptions": {
"ecmaVersion": 2020,
"sourceType": "module"
}
}