Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Converting to JS #76

Closed
wants to merge 1 commit into from
Closed
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
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 2 additions & 6 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,12 @@ root = true

[*]
charset = "utf8"

[*.coffee]
indent_style = space
indent_size = 4
trim_trailing_whitespace = true
end_of_line = lf


[*.js]
indent_style = space
indent_size = 4
indent_size = 2
trim_trailing_whitespace = true


Expand Down
14 changes: 14 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"extends": "airbnb-base",
"env": {
"browser": true,
"mocha": true
},
"parser": "babel-eslint",
"parserOptions": {
"sourceType": "module"
},
"rules": {
"class-methods-use-this": 0
}
}
2 changes: 1 addition & 1 deletion .npmignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
*
!dist/*
!src/*
!README.md
!LICENSE.md
!package.json
15 changes: 3 additions & 12 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,29 +5,20 @@ Feel free to submit pull-requests or suggestions via issues to improve this proc

# Guidelines

- Everything in CoffeeScript.
- Try to follow the code style in the script you're editing or surrounding scripts.
- Use [Biscotto](https://github.com/gjtorikian/biscotto) style comments on classes, methods, etc.
- Write comments.
- Take care that this module supports Windows, Mac, and Linux, NW.js and Electron, with or without Squirrel (auto-updating).
- Be nice.


# Setup

1. `npm install -g gulp`
2. `npm install`
3. Install the [EditorConfig](http://editorconfig.org) plugin for your IDE / text-editor.


# Compilation

1. `gulp`
1. `npm install`
2. Install the [EditorConfig](http://editorconfig.org) plugin for your IDE / text-editor.


# Running tests

(No need to compile first)

1. `npm test`


Expand Down
31 changes: 0 additions & 31 deletions gulpfile.coffee

This file was deleted.

Loading