Skip to content

Commit

Permalink
Merge pull request #634 from spencermountain/linked-list
Browse files Browse the repository at this point in the history
Linked list
  • Loading branch information
spencermountain authored Nov 28, 2019
2 parents ca7a2f8 + 23b5780 commit a9c7f3f
Show file tree
Hide file tree
Showing 913 changed files with 77,604 additions and 53,271 deletions.
33 changes: 0 additions & 33 deletions .esformatter

This file was deleted.

8 changes: 5 additions & 3 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"env": {
"es6": true
"node": true,
"browser": true
},
"parserOptions": {
"ecmaVersion": 6,
Expand All @@ -11,7 +12,7 @@
},
"rules": {
"no-cond-assign": 2,
"no-var": 0,
"no-var": 1,
"prefer-const": 0,
"no-extra-parens": 0,
"no-dupe-keys": 2,
Expand All @@ -34,6 +35,7 @@
"no-octal-escape": 2,
"no-constant-condition": 1,
"no-unused-expressions": 2,
"no-undefined": 0
"no-undefined": 0,
"no-undef": 2
}
}
20 changes: 1 addition & 19 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,24 +1,6 @@
node_modules/
coverage/
scripts/bower/bower-*
bower_components/
tmp/
viz/

.DS_Store
.jshintrc
.env
.nyc_output/

*.iml
*.log
*.stackdump
*.swp
*~
compromise.js.tmproj
compromise.xcodeproj
npm-debug.log
pennTreebank.js
compiled_tests.js
package-lock.json
coverage.lcov
.vscode
10 changes: 4 additions & 6 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -1,14 +1,12 @@
data
demo
plugins
scripts
src
test
.esformatter
tests
.eslintrc
.babelrc
.gitignore
TODO.MD
viz
changelog.md
fixme.md
hmm.md
rollup.config.js
scratch.js
6 changes: 3 additions & 3 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License
The MIT License (MIT)

Copyright (c) 2017 compromise
Copyright (c) 2019 Spencer Kelly

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand All @@ -18,4 +18,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
SOFTWARE.
Loading

0 comments on commit a9c7f3f

Please sign in to comment.