fleet/frontend/interfaces/user.js
Mike Stone ee3d96eb53 Update eslint (#337)
* Updates eslint packages

* Expected parentheses around arrow function argument having a body with curly braces

* Prop type `object` is forbidden

* Visible, non-interactive elements should not have mouse or keyboard event listeners

* Prop type is defined but not used

* Unexpected use of file extension "jsx"

* Expected 'this' to be used by class method

* HTML entities must be escaped

* Prevent default behavior on more options button click
2016-10-21 19:13:41 -04:00

14 lines
335 B
JavaScript

import { PropTypes } from 'react';
export default PropTypes.shape({
admin: PropTypes.bool,
email: PropTypes.string,
enabled: PropTypes.bool,
force_password_reset: PropTypes.bool,
gravatarURL: PropTypes.string,
id: PropTypes.number,
name: PropTypes.string,
position: PropTypes.string,
username: PropTypes.string,
});