traxxx/src/.eslintrc

21 lines
523 B
Plaintext
Executable File

{
"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,
"max-len": 0,
"no-underscore-dangle": 0,
"default-param-last": 0,
"prefer-destructuring": "off",
"template-curly-spacing": "off",
"object-curly-newline": "off"
}
}