|
View:
New views
8 Messages
—
Rating Filter:
Alert me
|
|
|
[pydev - Users] PylintRead and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=7330589 By: yang_damian I'm having problems using the PyLint integration. PyLint is correctly installed, working and producing correct warning when run from command line. I've followed the instructions and enabled PyLint from the preferences menu and specified the file path. However nothing specials appears in the console or problems tab when I run my script. ______________________________________________________________________ You are receiving this email because you elected to monitor this forum. To stop monitoring this forum, login to SourceForge.net and visit: https://sourceforge.net/forum/unmonitor.php?forum_id=293649 ------------------------------------------------------------------------------ Register Now & Save for Velocity, the Web Performance & Operations Conference from O'Reilly Media. Velocity features a full day of expert-led, hands-on workshops and two days of sessions from industry leaders in dedicated Performance & Operations tracks. Use code vel09scf and Save an extra 15% before 5/3. http://p.sf.net/sfu/velocityconf _______________________________________________ Pydev-users mailing list Pydev-users@... https://lists.sourceforge.net/lists/listinfo/pydev-users |
|
|
[pydev - Users] RE: PylintRead and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=7336915 By: yang_damian OK, it works. Apparently I had to put my files under a src folder ______________________________________________________________________ You are receiving this email because you elected to monitor this forum. To stop monitoring this forum, login to SourceForge.net and visit: https://sourceforge.net/forum/unmonitor.php?forum_id=293649 ------------------------------------------------------------------------------ Register Now & Save for Velocity, the Web Performance & Operations Conference from O'Reilly Media. Velocity features a full day of expert-led, hands-on workshops and two days of sessions from industry leaders in dedicated Performance & Operations tracks. Use code vel09scf and Save an extra 15% before 5/3. http://p.sf.net/sfu/velocityconf _______________________________________________ Pydev-users mailing list Pydev-users@... https://lists.sourceforge.net/lists/listinfo/pydev-users |
|
|
[pydev - Users] RE: PylintRead and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=7516917 By: thomasmm What does that mean? I'm having the same problem but I don't know what a 'src' folder is. Is there not some way to tell pylint to operate on the file that I'm currently editing? ______________________________________________________________________ You are receiving this email because you elected to monitor this forum. To stop monitoring this forum, login to SourceForge.net and visit: https://sourceforge.net/forum/unmonitor.php?forum_id=293649 ------------------------------------------------------------------------------ Enter the BlackBerry Developer Challenge This is your chance to win up to $100,000 in prizes! For a limited time, vendors submitting new applications to BlackBerry App World(TM) will have the opportunity to enter the BlackBerry Developer Challenge. See full prize details at: http://p.sf.net/sfu/Challenge _______________________________________________ Pydev-users mailing list Pydev-users@... https://lists.sourceforge.net/lists/listinfo/pydev-users |
|
|
[pydev - Users] RE: PylintRead and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=7516984 By: fabioz A 'src' folder is a folder that's specified as being in your project pythonpath (see http://fabioz.com/pydev/manual_101_project_conf2.html for details on that). When you save your file, if that file is under a source folder, that file should be analyzed (provided you have the auto-build turned on -- more details at http://pydev.sourceforge.net/pylint.html ) Cheers, Fabio ______________________________________________________________________ You are receiving this email because you elected to monitor this forum. To stop monitoring this forum, login to SourceForge.net and visit: https://sourceforge.net/forum/unmonitor.php?forum_id=293649 ------------------------------------------------------------------------------ Enter the BlackBerry Developer Challenge This is your chance to win up to $100,000 in prizes! For a limited time, vendors submitting new applications to BlackBerry App World(TM) will have the opportunity to enter the BlackBerry Developer Challenge. See full prize details at: http://p.sf.net/sfu/Challenge _______________________________________________ Pydev-users mailing list Pydev-users@... https://lists.sourceforge.net/lists/listinfo/pydev-users |
|
|
[pydev - Users] RE: PylintRead and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=7517038 By: thomasmm That made a big difference. Thanks. ______________________________________________________________________ You are receiving this email because you elected to monitor this forum. To stop monitoring this forum, login to SourceForge.net and visit: https://sourceforge.net/forum/unmonitor.php?forum_id=293649 ------------------------------------------------------------------------------ Enter the BlackBerry Developer Challenge This is your chance to win up to $100,000 in prizes! For a limited time, vendors submitting new applications to BlackBerry App World(TM) will have the opportunity to enter the BlackBerry Developer Challenge. See full prize details at: http://p.sf.net/sfu/Challenge _______________________________________________ Pydev-users mailing list Pydev-users@... https://lists.sourceforge.net/lists/listinfo/pydev-users |
|
|
[pydev - Users] RE: PylintRead and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=7517124 By: lparkh Here's a naive question. What does Pylint add beyond what Pydev seems to do in terms of detecting errors etc. There is some amount of this built in it seems like in my experience. Thanks, Lin ______________________________________________________________________ You are receiving this email because you elected to monitor this forum. To stop monitoring this forum, login to SourceForge.net and visit: https://sourceforge.net/forum/unmonitor.php?forum_id=293649 ------------------------------------------------------------------------------ Enter the BlackBerry Developer Challenge This is your chance to win up to $100,000 in prizes! For a limited time, vendors submitting new applications to BlackBerry App World(TM) will have the opportunity to enter the BlackBerry Developer Challenge. See full prize details at: http://p.sf.net/sfu/Challenge _______________________________________________ Pydev-users mailing list Pydev-users@... https://lists.sourceforge.net/lists/listinfo/pydev-users |
|
|
[pydev - Users] RE: PylintRead and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=7543423 By: f33l Pylint takes care of stuff like enforcing conventions (variable names, function names, etc.), checking for uninitialized variables, give out warnings for undetected variables, give some refactoring advice (too many local variables, too many parameters), check whether the called methods of an object exist. I'm not sure how many of the above items are directly built into pydev, I suppose it mainly detects simple syntax errors. ______________________________________________________________________ You are receiving this email because you elected to monitor this forum. To stop monitoring this forum, login to SourceForge.net and visit: https://sourceforge.net/forum/unmonitor.php?forum_id=293649 ------------------------------------------------------------------------------ Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day trial. Simplify your report design, integration and deployment - and focus on what you do best, core application coding. Discover what's new with Crystal Reports now. http://p.sf.net/sfu/bobj-july _______________________________________________ Pydev-users mailing list Pydev-users@... https://lists.sourceforge.net/lists/listinfo/pydev-users |
|
|
[pydev - Users] RE: PylintRead and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=7547072 By: fabioz Pydev only has syntax checking. Pydev Extensions has code analysis. See: http://fabioz.com/pydev/manual_adv_code_analysis.html PyLint does things similar to the Pydev Extensions code-analysis plus some checks on the coding style (i.e.: following pep 8) -- although it's significantly slower than Pydev Extensions for the code analysis bits. ______________________________________________________________________ You are receiving this email because you elected to monitor this forum. To stop monitoring this forum, login to SourceForge.net and visit: https://sourceforge.net/forum/unmonitor.php?forum_id=293649 ------------------------------------------------------------------------------ Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day trial. Simplify your report design, integration and deployment - and focus on what you do best, core application coding. Discover what's new with Crystal Reports now. http://p.sf.net/sfu/bobj-july _______________________________________________ Pydev-users mailing list Pydev-users@... https://lists.sourceforge.net/lists/listinfo/pydev-users |
| Free embeddable forum powered by Nabble | Forum Help |