mirror of
https://github.com/reactos/developer-web-interface.git
synced 2024-11-23 03:49:43 +00:00
22 lines
376 B
JSON
22 lines
376 B
JSON
{
|
|
"env": {
|
|
"node": true,
|
|
"commonjs": true,
|
|
"es6": true
|
|
},
|
|
"extends": "eslint:recommended",
|
|
"globals": {
|
|
"Atomics": "readonly",
|
|
"SharedArrayBuffer": "readonly"
|
|
},
|
|
"parserOptions": {
|
|
"ecmaVersion": 2018
|
|
},
|
|
"rules": {
|
|
"indent": ["error", "tab"],
|
|
"linebreak-style": ["error", "windows"],
|
|
"quotes": ["error", "single"],
|
|
"semi": ["error", "always"]
|
|
}
|
|
}
|