forked from DebaucheryLibrarian/traxxx
16 lines
381 B
Plaintext
16 lines
381 B
Plaintext
|
{
|
||
|
"root": true,
|
||
|
"parser": "babel-eslint",
|
||
|
"extends": "airbnb-base",
|
||
|
"parserOptions": {
|
||
|
"sourceType": "script"
|
||
|
},
|
||
|
"rules": {
|
||
|
"strict": 0,
|
||
|
"no-unused-vars": ["error", {"argsIgnorePattern": "^_"}],
|
||
|
"no-console": 0,
|
||
|
"indent": ["error", 4],
|
||
|
"max-len": [2, {"code": 200, "tabWidth": 4, "ignoreUrls": true}]
|
||
|
}
|
||
|
}
|