Skip to content
This repository was archived by the owner on Mar 21, 2022. It is now read-only.

CB-14145 resolve npm audit issues in patch fix #50

Merged
merged 21 commits into from
Jul 30, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
1 change: 0 additions & 1 deletion .jshintignore → .eslintignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
bin/node_modules/*
bin/templates/project/*
tests
37 changes: 37 additions & 0 deletions .eslintrc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
root: true
extends: semistandard

rules:
# not used in patch release (at least for now):
# indent:
# - error
# - 4
camelcase: off
padded-blocks: off
operator-linebreak: off
no-throw-literal: off
# needed in patch release (at least for now):

indent: off
no-useless-escape: off
space-before-function-paren: off
eol-last: off
no-undef: off
one-var: off
func-call-spacing: off
space-infix-ops: off
comma-spacing: off
no-multi-spaces: off
brace-style: off
spaced-comment: off
eqeqeq: off
space-in-parens: off
keyword-spacing: off
no-trailing-spaces: off
no-useless-return: off
space-before-blocks: off
curly: off
key-spacing: off
new-cap: off
no-multiple-empty-lines: off
no-extra-boolean-cast: off
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,7 @@ tmp
xcuserdata
*.xcworkspace
console.log
/node_modules
node_modules/.bin
package-lock.json
tests/cdv-test-project/node_modules/
tests/cdv-test-project/package.json
10 changes: 0 additions & 10 deletions .jshintrc

This file was deleted.

2 changes: 1 addition & 1 deletion CordovaLib/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4.0.1
4.0.2-dev
Loading