Skip to content

Commit

Permalink
0316/prepare minor release (#343)
Browse files Browse the repository at this point in the history
* v3.15.0

* v3.15.1

* chore: build 1.16.0

* remove husky, commitlint, update tests

* fixed #328

* fixed regression

* update dependencies, clean build process
  • Loading branch information
mikeerickson authored Sep 4, 2019
1 parent 2a803be commit 249b15c
Show file tree
Hide file tree
Showing 124 changed files with 22,492 additions and 6,764 deletions.
26 changes: 26 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
module.exports = {
env: {
es6: true,
node: true,
jest: true
},
extends: 'eslint:recommended',
parserOptions: {
ecmaVersion: 2017
},
rules: {
'no-empty': 'off',
indent: ['error', 2],
quotes: ['error', 'single'],
semi: ['error', 'always'],
'no-useless-escape': 'off',
'no-unused-vars': 'off',
'no-undef': 'off',
'no-console': [
'error',
{
allow: ['log']
}
]
}
};
13 changes: 0 additions & 13 deletions .jshintrc

This file was deleted.

8 changes: 8 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
tests/
test/
dist/validator.min.js
spec/
scripts/
karma.conf.js
Gruntfile.js
gulpfile.js
Loading

0 comments on commit 249b15c

Please sign in to comment.