Skip to content
This repository was archived by the owner on Apr 30, 2018. It is now read-only.

Commit 1df064a

Browse files
author
Kent C. Dodds
committed
fix(build): Remove kcd-common-tools, update dependencies, make life good again
1 parent d8906a6 commit 1df064a

16 files changed

+347
-85
lines changed

.editorconfig

Lines changed: 0 additions & 1 deletion
This file was deleted.

.editorconfig

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# EditorConfig is awesome: http://EditorConfig.org
2+
3+
# top-most EditorConfig file
4+
root = true
5+
6+
# all files
7+
[*]
8+
end_of_line = lf
9+
insert_final_newline = true
10+
indent_style = space
11+
indent_size = 2
12+
charset = utf-8
13+
trim_trailing_whitespace = true
14+
max_line_length = 120
15+
16+
[*.js]
17+
quote_type = single
18+
curly_bracket_next_line = false
19+
spaces_around_operators = true
20+
spaces_around_brackets = inside
21+
indent_brace_style = BSD KNF
22+
23+
# HTML
24+
[*.html]
25+
quote_type = double

.eslintignore

Lines changed: 0 additions & 1 deletion
This file was deleted.

.eslintignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
node_modules
2+
coverage
3+
dist
4+
local-examples
5+
other

.eslintrc

Lines changed: 3 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,5 @@
11
{
2-
"extends": "kentcdodds/test-angular",
3-
"rules": {
4-
"no-invalid-this": 0, // meh...
5-
"func-names": 0, // I wish, but doing this right now would be a royal pain
6-
"new-cap": [
7-
2,
8-
{
9-
"newIsCap": true,
10-
"capIsNew": true
11-
}
12-
],
13-
"max-params": [2, 10],
14-
"max-statements": [2, 30], // TODO bring this down
15-
},
16-
"globals": {
17-
"VERSION": false
18-
},
2+
// The purpose of this .eslintrc is just for editors and IDEs to pick it up.
3+
// Webpack tells eslint which files to use explicitly.
4+
"extends": "./other/test.eslintrc"
195
}

.gitignore

Lines changed: 0 additions & 1 deletion
This file was deleted.

.gitignore

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
.idea
2+
*.log
3+
*.iml
4+
*.DS_Store
5+
6+
node_modules
7+
coverage
8+
nohup.out
9+
10+
*.ignored.*
11+
*.ignored/
12+
*.ignored
13+
dist
14+

.npmignore

Lines changed: 0 additions & 1 deletion
This file was deleted.

.npmignore

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
.idea
2+
node_modules
3+
coverage
4+
local-examples
5+
demo
6+
.editorconfig
7+
.gitignore
8+
.travis.yml
9+
CONTRIBUTING.md
10+
karma.conf.js
11+
webpack.config.js
12+
other

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ before_script:
1818
- npm prune
1919
script:
2020
- npm run code-checks
21-
- npm t
21+
- npm run test:ci
2222
- npm run check-coverage
2323
after_success:
2424
- npm run report-coverage

0 commit comments

Comments
 (0)