2019-02-18 18:37:36 +05:30
|
|
|
|
import React, { Fragment } from 'react';
|
|
|
|
|
import Helmet from 'react-helmet';
|
|
|
|
|
import { Grid, Col, Row } from '@freecodecamp/react-bootstrap';
|
|
|
|
|
|
|
|
|
|
import { Link, Spacer } from '../components/helpers';
|
|
|
|
|
|
|
|
|
|
const CodeOfConductPage = () => {
|
|
|
|
|
return (
|
|
|
|
|
<Fragment>
|
|
|
|
|
<Helmet title='Code of Conduct | freeCodeCamp.org' />
|
|
|
|
|
<Spacer />
|
2019-02-18 20:43:41 +05:30
|
|
|
|
<Grid>
|
2019-02-18 18:37:36 +05:30
|
|
|
|
<Row>
|
2019-02-18 20:43:41 +05:30
|
|
|
|
<Col md={6} mdOffset={3} sm={10} smOffset={1} xs={12}>
|
2019-02-18 18:37:36 +05:30
|
|
|
|
<h2 className='text-center'>Code of Conduct</h2>
|
|
|
|
|
<hr />
|
|
|
|
|
<p>
|
|
|
|
|
freeCodeCamp is a friendly place to learn to code. We’re committed
|
|
|
|
|
to keeping it that way.
|
|
|
|
|
</p>
|
|
|
|
|
<p>
|
|
|
|
|
By using freeCodeCamp, you agree that you'll follow this code of
|
|
|
|
|
conduct.
|
|
|
|
|
</p>
|
|
|
|
|
<p>In short: Be nice. No harassment, trolling, or spamming.</p>
|
2019-02-18 20:43:41 +05:30
|
|
|
|
<ul style={{ 'margin-top': '0', 'margin-bottom': '10px' }}>
|
2019-02-18 18:37:36 +05:30
|
|
|
|
<li>
|
2019-02-18 20:43:41 +05:30
|
|
|
|
<strong>Harassment</strong> includes sexual language and
|
|
|
|
|
imagery, deliberate intimidation, stalking, name-calling,
|
|
|
|
|
unwelcome attention, libel, and any malicious hacking or social
|
2019-02-18 18:37:36 +05:30
|
|
|
|
engineering. freeCodeCamp should be a harassment-free experience
|
|
|
|
|
for everyone, regardless of gender, gender identity and
|
|
|
|
|
expression, age, sexual orientation, disability, physical
|
|
|
|
|
appearance, body size, race, national origin, or religion (or
|
|
|
|
|
lack thereof).
|
|
|
|
|
</li>
|
|
|
|
|
<li>
|
2019-02-18 20:43:41 +05:30
|
|
|
|
<strong>Trolling</strong> includes posting inflammatory comments
|
|
|
|
|
to provoke an emotional response or disrupt discussions.
|
2019-02-18 18:37:36 +05:30
|
|
|
|
</li>
|
|
|
|
|
<li>
|
|
|
|
|
<strong>Spamming</strong> includes posting off-topic messages to
|
|
|
|
|
disrupt discussions, promoting a product, soliciting donations,
|
|
|
|
|
advertising a job / internship / gig, or flooding discussions
|
|
|
|
|
with files or text.
|
|
|
|
|
</li>
|
|
|
|
|
</ul>
|
|
|
|
|
<p>
|
|
|
|
|
If you see someone harass, troll, or spam anywhere in the
|
|
|
|
|
freeCodeCamp community (forum, chat, YouTube, Facebook, etc.),
|
|
|
|
|
notify us in the{' '}
|
|
|
|
|
<Link to='https://gitter.im/freecodecamp/admin'>
|
|
|
|
|
admin chat room
|
|
|
|
|
</Link>{' '}
|
2019-02-18 20:43:41 +05:30
|
|
|
|
- preferably with a screen shot of the offense. The moderator team
|
|
|
|
|
will take any action we deem appropriate, up to and including
|
|
|
|
|
banning the offender from freeCodeCamp.
|
2019-02-18 18:37:36 +05:30
|
|
|
|
</p>
|
|
|
|
|
<p>
|
|
|
|
|
Also, no bots are allowed in the freeCodeCamp community without
|
|
|
|
|
prior written permission from{' '}
|
2019-02-18 20:43:41 +05:30
|
|
|
|
<Link to='https://gitter.im/quincylarson'>Quincy Larson</Link>.
|
2019-02-18 18:37:36 +05:30
|
|
|
|
</p>
|
|
|
|
|
</Col>
|
|
|
|
|
</Row>
|
|
|
|
|
</Grid>
|
|
|
|
|
</Fragment>
|
|
|
|
|
);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
CodeOfConductPage.displayName = 'CodeOfConductPage';
|
|
|
|
|
|
|
|
|
|
export default CodeOfConductPage;
|