traxxx/src/.eslintrc

16 lines
402 B
Plaintext
Raw Normal View History

{
"extends": "airbnb-base",
"parserOptions": {
2019-12-09 04:00:49 +00:00
"parser": "babel-eslint",
"sourceType": "script"
},
"rules": {
"strict": 0,
"no-unused-vars": ["error", {"argsIgnorePattern": "^_"}],
"no-console": 0,
2019-12-09 04:00:49 +00:00
"indent": "off",
"template-curly-spacing": "off",
2019-12-09 04:00:49 +00:00
"max-len": [2, {"code": 300, "tabWidth": 4, "ignoreUrls": true}],
}
}