Skip to content

Commit

Permalink
Replace awesome_bot with awesome-lint
Browse files Browse the repository at this point in the history
… and fix linting errors.
  • Loading branch information
mischah committed Dec 26, 2016
1 parent 369f347 commit 9cbf90a
Show file tree
Hide file tree
Showing 4 changed files with 66 additions and 10 deletions.
49 changes: 49 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -61,3 +61,52 @@ Temporary Items

# .nfs files are created when an open file is removed but is still being accessed
.nfs*

### Node ###
# Logs
logs
*.log
npm-debug.log*

# Runtime data
pids
*.pid
*.seed
*.pid.lock

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov

# Coverage directory used by tools like istanbul
coverage

# nyc test coverage
.nyc_output

# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
.grunt

# node-waf configuration
.lock-wscript

# Compiled binary addons (http://nodejs.org/api/addons.html)
build/Release

# Dependency directories
node_modules
jspm_packages

# Optional npm cache directory
.npm

# Optional eslint cache
.eslintcache

# Optional REPL history
.node_repl_history

# Output of 'npm pack'
*.tgz

# Yarn Integrity file
.yarn-integrity
10 changes: 3 additions & 7 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
language: ruby
rvm:
- 2.2
before_script:
- gem install awesome_bot
script:
- awesome_bot readme.md --allow-redirect --white-list sindresorhus/awesome
language: node_js
node_js:
- 'node'
11 changes: 11 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"name": "awesome-javascript-learning-ressources",
"private": true,
"scripts": {
"test": "awesome-lint"
},
"author": "Michael Kühnel",
"devDependencies": {
"awesome-lint": "^0.1.0"
}
}
6 changes: 3 additions & 3 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ This list is about JavaScript – the language. Not about APIs, tooling, framewo
- [Videos](#videos)
- [Interactive learning](#interactive-learning)

----
---

## JavaScript References

Expand All @@ -38,7 +38,7 @@ This list is about JavaScript – the language. Not about APIs, tooling, framewo

- [Eloquent JavaScript](http://eloquentjavascript.net) – Covering the language and runtime specifics.
- [You Don't Know JS (book series)](https://github.com/getify/You-Dont-Know-JS) – Series of books diving deep into language.
- [Speaking JavaScript](http://speakingjs.com/) - In-depth guide beginning with the basics.
- [Speaking JavaScript](http://speakingjs.com) - In-depth guide beginning with the basics.
- [JavaScript Design Patterns](http://addyosmani.com/resources/essentialjsdesignpatterns/book/) - Classical and JavaScript specific design patterns.

## Books
Expand All @@ -63,7 +63,7 @@ Thin books which you can get through in a few days.
- [What the heck is the event loop anyway?](https://www.youtube.com/watch?v=8aGhZQkoFbQ) - Awesome talk about the way JavaScript works.
- [Become a Javascript Console Power-User](https://www.youtube.com/watch?v=4mf_yNLlgic) – Introduction to the browsers JavaScript console.
- [Debugging The Web](https://www.youtube.com/watch?v=HF1luRD4Qmk) - Learn state of the art in debugging using Chrome dev tools.
- [JavaScript 30](https://javascript30.com/) - 30 video tutorials to build neat little things with just plain JavaScript.
- [JavaScript 30](https://javascript30.com) - 30 video tutorials to build neat little things with just plain JavaScript.
- [Promises Are So Passé](https://vimeo.com/181328943) - Talk that shows where async goes next, why it matters, and what you need to do to put it into practice today.
- [Learning Functional Programming with JavaScript](https://www.youtube.com/watch?v=e-5obm1G_FY) - Talk containing the best explanation of map/reduce.

Expand Down

0 comments on commit 9cbf90a

Please sign in to comment.