eslint-config/.eslintrc.json
Valentin Popov 92c2dc54a9
feat(config): Initial default rules
Signed-off-by: Valentin Popov <info@valentineus.link>
2020-02-13 22:22:55 +04:00

19 lines
321 B
JSON

{
"env": {
"es6": true,
"node": true
},
"extends": "./typescript",
"globals": {
"Atomics": "readonly",
"SharedArrayBuffer": "readonly"
},
"parserOptions": {
"ecmaVersion": 2020,
"project": "./tsconfig.json",
"sourceType": "module",
"tsconfigRootDir": "."
},
"root": true
}