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