mirror of
https://github.com/node-ebics/node-ebics-client.git
synced 2024-11-21 21:52:07 +00:00
35 lines
616 B
Plaintext
35 lines
616 B
Plaintext
{
|
|
"extends": "airbnb",
|
|
"env": {
|
|
"node": true
|
|
},
|
|
"parserOptions": {
|
|
"ecmaVersion": 8,
|
|
"sourceType": "script",
|
|
"ecmaFeatures": {
|
|
"modules": false
|
|
}
|
|
},
|
|
"rules": {
|
|
"max-len": 0,
|
|
"linebreak-style": 0,
|
|
"no-plusplus": [
|
|
2,
|
|
{
|
|
"allowForLoopAfterthoughts": true
|
|
}
|
|
],
|
|
"no-continue": 0,
|
|
"indent": [2, "tab"],
|
|
"no-tabs": 0,
|
|
"strict": [2, "safe"],
|
|
"curly": [2, "multi", "consistent"],
|
|
"import/no-extraneous-dependencies": 0,
|
|
"import/no-unresolved": 0,
|
|
"no-underscore-dangle": 0,
|
|
"no-param-reassign": 0,
|
|
"generator-star-spacing": 0,
|
|
"jsx-a11y/href-no-hash": "off"
|
|
}
|
|
}
|