mirror of
https://github.com/torproject/dev.git
synced 2024-11-26 19:00:24 +00:00
88c9a2748d
This reverts commit a786ed994072dc6727a4806a049d45216d7846a0.
31 lines
609 B
JSON
Executable File
31 lines
609 B
JSON
Executable File
{
|
|
"env": {
|
|
"browser": true,
|
|
"commonjs": true,
|
|
"es6": true,
|
|
"node": true
|
|
},
|
|
"extends": "eslint:recommended",
|
|
"globals": {
|
|
"Atomics": "readonly",
|
|
"SharedArrayBuffer": "readonly"
|
|
},
|
|
"parserOptions": {
|
|
"ecmaVersion": 2018,
|
|
"sourceType": "module"
|
|
},
|
|
"rules": {
|
|
"no-console": 0,
|
|
"quotes": ["error", "single"],
|
|
"comma-dangle": [
|
|
"error",
|
|
{
|
|
"arrays": "always-multiline",
|
|
"objects": "always-multiline",
|
|
"imports": "always-multiline",
|
|
"exports": "always-multiline",
|
|
"functions": "ignore"
|
|
}
|
|
]
|
|
}
|
|
} |