mirror of
https://github.com/status-im/realm-js.git
synced 2025-01-09 22:05:57 +00:00
21 lines
326 B
JSON
21 lines
326 B
JSON
{
|
|
"root": true,
|
|
"env": {
|
|
"es6": true,
|
|
"node": true
|
|
},
|
|
"extends": "eslint:recommended",
|
|
"rules": {
|
|
"comma-dangle": 0,
|
|
"no-empty": 0,
|
|
"no-console": 0,
|
|
"no-unused-vars": [
|
|
"warn", {
|
|
"varsIgnorePattern": "^_",
|
|
"args": "none"
|
|
}
|
|
],
|
|
"strict": [2, "global"]
|
|
}
|
|
}
|