Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 9660989

Browse filesBrowse files
Sean PrashadSean Prashad
authored andcommitted
Move website material into master
1 parent dd28d31 commit 9660989
Copy full SHA for 9660989

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Dismiss banner
Expand file treeCollapse file tree

62 files changed

+31625
-0
lines changed

‎.eslintrc.js

Copy file name to clipboard
+28Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
module.exports = {
2+
extends: ['airbnb', 'plugin:prettier/recommended', 'prettier/react'],
3+
env: {
4+
browser: true,
5+
commonjs: true,
6+
es6: true,
7+
jest: true,
8+
node: true,
9+
},
10+
rules: {
11+
'jsx-a11y/href-no-hash': ['off'],
12+
'react/jsx-filename-extension': ['warn', { extensions: ['.js', '.jsx'] }],
13+
'max-len': [
14+
'warn',
15+
{
16+
code: 80,
17+
tabWidth: 2,
18+
comments: 80,
19+
ignoreComments: false,
20+
ignoreTrailingComments: true,
21+
ignoreUrls: true,
22+
ignoreStrings: true,
23+
ignoreTemplateLiterals: true,
24+
ignoreRegExpLiterals: true,
25+
},
26+
],
27+
},
28+
};

‎.gitignore

Copy file name to clipboard
+24Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2+
3+
# dependencies
4+
/node_modules
5+
/.pnp
6+
.pnp.js
7+
8+
# testing
9+
/coverage
10+
11+
# production
12+
/build
13+
14+
# misc
15+
.DS_Store
16+
.env
17+
.env.local
18+
.env.development.local
19+
.env.test.local
20+
.env.production.local
21+
22+
npm-debug.log*
23+
yarn-debug.log*
24+
yarn-error.log*

‎.prettierrc.js

Copy file name to clipboard
+5Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
module.exports = {
2+
printWidth: 80,
3+
singleQuote: true,
4+
trailingComma: 'all',
5+
};

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.