traxxx/src/.eslintrc

21 lines
523 B
Plaintext
Raw Normal View History

{
"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,
2024-01-03 22:03:30 +00:00
"max-len": 0,
2020-01-10 21:10:11 +00:00
"no-underscore-dangle": 0,
"default-param-last": 0,
2020-02-12 22:00:32 +00:00
"prefer-destructuring": "off",
"template-curly-spacing": "off",
2024-01-03 22:03:30 +00:00
"object-curly-newline": "off"
}
}