16 lines
382 B
Plaintext
16 lines
382 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}]
|
|
}
|
|
}
|