Visual Studio code with PyLint and autoPep8: How can I avoid PyLint to complain about my line length?
I figured out how to do this. Add this line to your settings: “python.linting.pep8Args”: [“–max-line-length=100”],
I figured out how to do this. Add this line to your settings: “python.linting.pep8Args”: [“–max-line-length=100”],
A possible solution for this (but I think it is not smart): SmartTable.propTypes = { name: React.PropTypes.string.isRequired, cols: React.PropTypes.arrayOf(React.PropTypes.string), rows: React.PropTypes.arrayOf(React.PropTypes.string), };
I just saw that you made an edit (“EDIT 2”) to your answer. Anyway I wanted to advise you exactly that option: “indent”: [“error”, 4, { “SwitchCase”: 1 }] Why do you consider it “an invalid rule for indent“? According to the docs, it is the correct way to set the desired indent for switch … Read more