traxxx/src/.eslintrc

20 lines
552 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,
"indent": ["error", "tab"],
"no-tabs": "off",
"no-unused-vars": ["error", {"argsIgnorePattern": "^_"}],
"no-console": 0,
2020-01-10 21:10:11 +00:00
"no-underscore-dangle": 0,
2020-02-12 22:00:32 +00:00
"prefer-destructuring": "off",
"template-curly-spacing": "off",
"object-curly-newline": "off",
2019-12-09 04:00:49 +00:00
"max-len": [2, {"code": 300, "tabWidth": 4, "ignoreUrls": true}],
}
}