i came across some error causing rules while trying around with the airbnb eslint preset
will throw error if not disabled
console.log! 'hello world'
"function-paren-newline": "off",
indent: "off",
will throw error if not disabled
if true or false: console.log('hello')
"space-infix-ops": "off",
will throw error if not disabled
will stop working without throwing any errors if not disabled
if a:
console.log('a')
elif b:
console.log('b')
"keyword-spacing": "off",
rules that will not crash eslint but are unnecessary
semi: "off",
"comma-dangle": "off",
"brace-style": "off",
"space-before-blocks": "off",
https://github.com/jguddas/lsc-eslint-error-example
i came across some error causing rules while trying around with the airbnb eslint preset
will throw error if not disabled
will throw error if not disabled
will throw error if not disabled
will stop working without throwing any errors if not disabled
rules that will not crash eslint but are unnecessary
https://github.com/jguddas/lsc-eslint-error-example