Skip to content

Commit

Permalink
Generate project
Browse files Browse the repository at this point in the history
  • Loading branch information
piecioshka committed Oct 17, 2017
0 parents commit 7758dfc
Show file tree
Hide file tree
Showing 9 changed files with 1,632 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# This file is for unifying the coding style for different editors and IDEs.
# EditorConfig is awesome: http://EditorConfig.org

# No .editorconfig files above the root directory.
root = true

[*]
indent_style = space
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true

# Use 4 spaces for indention in popular file types.
[*.{js,json,html,xml,css,sass,scss,less}]
indent_size = 4
20 changes: 20 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
module.exports = {
extends: 'piecioshka',

// http://eslint.org/docs/user-guide/configuring#specifying-environments
env: {
es6: true,
// browser: true,
// node: true,
// commonjs: true,
// amd: true,
// jquery: true,
jasmine: true
},

// http://eslint.org/docs/rules/
rules: {},

// List of global variables.
globals: {}
};
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
node_modules/
npm-debug.log

coverage/
dist/
23 changes: 23 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# mobile-keyboard-translator

> TODO
## Unit tests

Use Jasmine to setup unit test:

```
$ npm test
```

## Code coverage

Use Istanbul to get code coverage ratio:

```
$ npm run coverage
```

## License

[The MIT License](http://piecioshka.mit-license.org) @ 2017
10 changes: 10 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<!DOCTYPE html>
<html>
<head>
<title>mobile-keyboard-translator</title>
<meta charset="utf-8"/>
</head>
<body>

</body>
</html>

0 comments on commit 7758dfc

Please sign in to comment.