forked from DebaucheryLibrarian/traxxx
20 lines
548 B
Plaintext
20 lines
548 B
Plaintext
{
|
|
"extends": "airbnb-base",
|
|
"parserOptions": {
|
|
"parser": "@babel/eslint-parser",
|
|
"sourceType": "script"
|
|
},
|
|
"rules": {
|
|
"strict": 0,
|
|
"indent": "off",
|
|
"no-tabs": "off",
|
|
"no-unused-vars": ["error", {"argsIgnorePattern": "^_"}],
|
|
"no-console": 0,
|
|
"no-underscore-dangle": 0,
|
|
"prefer-destructuring": "off",
|
|
"template-curly-spacing": "off",
|
|
"object-curly-newline": "off",
|
|
"max-len": [2, {"code": 300, "tabWidth": 4, "ignoreUrls": true}]
|
|
}
|
|
}
|