OCA / pylint-odoo

Odoo plugin for Pylint
http://www.pylint.org
142 stars 168 forks source link

Detect deprecated fields attributes #84

Closed moylop260 closed 7 years ago

moylop260 commented 7 years ago

FYI https://github.com/odoo/odoo/blob/d11e88dde9b9c1bfe1044e0e233b7095514aeae7/odoo/fields.py#L29

Low priority since that odoo emit a logger.warning But is a cool feature have a static checker for our IDE

If we have

field_name = fields.{Type}(select=something) # emit message field_name = fields.{Type}(digits_compute=something) # emit message

moylop260 commented 7 years ago

Fixed from https://github.com/Vauxoo/pylint-odoo/issues/91