Skip to content

Commit

Permalink
Upgraded a ton of dependencies (e.g. webpack 4) (#4051)
Browse files Browse the repository at this point in the history
* Upgraded a ton of dependencies (e.g. webpack 4)

* Updated codeclimate method length setting

* v2 of code climate config

* code climate exclusion rule change

* Added lock.yml

* Disabled file-lines code climate check
  • Loading branch information
erikras committed Jun 1, 2018
1 parent f49f78f commit 83b79a7
Show file tree
Hide file tree
Showing 23 changed files with 12,859 additions and 6,461 deletions.
30 changes: 20 additions & 10 deletions .codeclimate.yml
Original file line number Diff line number Diff line change
@@ -1,15 +1,25 @@
engines:
duplication:
enabled: false
version: "2" # required to adjust maintainability checks
plugins:
eslint:
enabled: true
checks:
argument-count:
enabled: true
config:
languages:
- javascript
eslint:
threshold: 4
complex-logic:
enabled: true
config:
threshold: 4
file-lines:
enabled: false
method-complexity:
enabled: false
ratings:
paths:
- "**.js"
method-lines:
enabled: true
config:
threshold: 100
identical-code:
enabled: true
exclude_patterns:
- "**.spec.js"
- "**/*.spec.js"
1 change: 1 addition & 0 deletions .flowconfig
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
[ignore]
.*/node_modules/editions/.*
.*/node_modules/@webassemblyjs/.*
.*/__tests__/.*

[include]
Expand Down
28 changes: 28 additions & 0 deletions .github/lock.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# Configuration for lock-threads - https://github.com/dessant/lock-threads

# Number of days of inactivity before a closed issue or pull request is locked
daysUntilLock: 365

# Issues and pull requests with these labels will not be locked. Set to `[]` to disable
exemptLabels: []

# Label to add before locking, such as `outdated`. Set to `false` to disable
lockLabel: false

# Comment to post before locking. Set to `false` to disable
lockComment: >
This thread has been automatically locked since there has not been
any recent activity after it was closed. Please open a new issue for
related bugs.
# Limit to only `issues` or `pulls`
# only: issues

# Optionally, specify configuration settings just for `issues` or `pulls`
# issues:
# exemptLabels:
# - help-wanted
# lockLabel: outdated

pulls:
daysUntilLock: 30
3 changes: 3 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,10 @@ node_js:
- "6"
- "7"
- "8"
- "9"
- "10"
- "stable"

script:
- npm run validate
- cat ./coverage/lcov.info | ./node_modules/codecov.io/bin/codecov.io.js
Loading

0 comments on commit 83b79a7

Please sign in to comment.