Skip to content

Commit 4fecdc1

Browse files
author
Fred Zirdung
committed
(init)
0 parents  commit 4fecdc1

38 files changed

+23821
-0
lines changed

.eslintignore

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
.eslint*
2+
**/node_modules
3+
**/bower_components
4+
**/lib
5+
**/vendor
6+
**/*.min.js
7+
sprint-one/spec/verifyClass.js

.eslintrc.js

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
/**
2+
* These rules enforce Hack Reactor's style guide.
3+
* Visit this repo for more information:
4+
* https://github.com/reactorcore/eslint-config-hackreactor
5+
*/
6+
7+
module.exports = {
8+
env: {
9+
'es6': true
10+
},
11+
parserOptions: {
12+
ecmaFeatures: {
13+
'jsx': true
14+
}
15+
},
16+
rules: {
17+
/* Indentation */
18+
'no-mixed-spaces-and-tabs': 2,
19+
'indent': [2, 2],
20+
/* Variable cames */
21+
'camelcase': 2,
22+
/* Language constructs */
23+
'curly': 2,
24+
'eqeqeq': [2, 'smart'],
25+
'func-style': [2, 'expression'],
26+
/* Semicolons */
27+
'semi': 2,
28+
'no-extra-semi': 2,
29+
/* Padding & additional whitespace (perferred but optional) */
30+
'brace-style': [2, '1tbs', { 'allowSingleLine': true }],
31+
'semi-spacing': 1,
32+
'key-spacing': 1,
33+
'block-spacing': 1,
34+
'comma-spacing': 1,
35+
'no-multi-spaces': 1,
36+
'space-before-blocks': 1,
37+
'keyword-spacing': [1, { 'before': true, 'after': true }],
38+
'space-infix-ops': 1,
39+
/* Variable declaration */
40+
'one-var': [1, { 'uninitialized': 'always', 'initialized': 'never' }],
41+
/* Minuta */
42+
'comma-style': [2, 'last'],
43+
'quotes': [1, 'single']
44+
}
45+
};

.gitignore

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
###OSX###
2+
3+
.DS_Store
4+
.AppleDouble
5+
.LSOverride
6+
Icon
7+
8+
9+
# Thumbnails
10+
._*
11+
12+
# Files that might appear on external disk
13+
.Spotlight-V100
14+
.Trashes
15+
16+
17+
###Node###
18+
19+
lib-cov
20+
*.seed
21+
*.log
22+
*.csv
23+
*.dat
24+
*.out
25+
*.pid
26+
*.gz
27+
28+
pids
29+
logs
30+
results
31+
32+
npm-debug.log
33+
node_modules
34+
35+
# Floobits
36+
.floo
37+
.floobit
38+
.floo
39+
.flooignore

.vscode/settings.json

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"editor.lightbulb.enabled": false,
3+
"editor.parameterHints.enabled": false,
4+
"editor.renderWhitespace": "all",
5+
"editor.snippetSuggestions": "none",
6+
"editor.tabSize": 2,
7+
"editor.wordWrap": "on",
8+
"emmet.showExpandedAbbreviation": "never",
9+
"files.trimTrailingWhitespace": true,
10+
"javascript.suggest.enabled": false,
11+
"javascript.updateImportsOnFileMove.enabled": "never",
12+
"javascript.validate.enable": false
13+
}

0 commit comments

Comments
 (0)