Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
wooorm committed Dec 22, 2015
0 parents commit 914c633
Show file tree
Hide file tree
Showing 17 changed files with 593 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
root = true

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

[*.{json,mdastrc,eslintrc}]
indent_size = 2

[*.md]
trim_trailing_whitespace = false
6 changes: 6 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
build/
components/
coverage/
build.js
character-entities-html4.js
character-entities-html4.min.js
6 changes: 6 additions & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"extends": "eslint:recommended",
"rules": {
"quotes": [2, "single"]
}
}
10 changes: 10 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
.DS_Store
*.log
build/
components/
coverage/
data/
node_modules/
build.js
character-entities-html4.js
character-entities-html4.min.js
31 changes: 31 additions & 0 deletions .jscs.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
{
"excludeFiles": [
"build/",
"components/",
"coverage/",
"node_modules/",
"build.js",
"character-entities-html4.js",
"character-entities-html4.min.js"
],
"preset": "yandex",
"requireQuotedKeysInObjects": true,
"disallowQuotedKeysInObjects": false,
"jsDoc": {
"checkAnnotations": "jsdoc3",
"checkParamExistence": true,
"checkParamNames": true,
"checkRedundantAccess": true,
"checkRedundantParams": true,
"checkRedundantReturns": true,
"checkReturnTypes": true,
"checkTypes": "strictNativeCase",
"enforceExistence": true,
"requireHyphenBeforeDescription": true,
"requireNewlineAfterDescription": true,
"requireParamDescription": true,
"requireParamTypes": true,
"requireReturnDescription": true,
"requireReturnTypes": true
}
}
1 change: 1 addition & 0 deletions .mdastignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
components
13 changes: 13 additions & 0 deletions .mdastrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"output": true,
"plugins": [
"lint",
"github",
"comment-config",
"slug",
"validate-links"
],
"settings": {
"bullet": "*"
}
}
18 changes: 18 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
language: node_js
node_js:
- '0.10'
- '0.11'
- '0.12'
- '4.0'
- '5.0'
- iojs
after_script: npm install codecov.io && cat ./coverage/lcov.info | codecov
deploy:
provider: releases
api_key:
secure: dW3rd8PaW2+wDdGmcoYkvrd/at0lWw4plbk6tRawT8lb3+0d40Q/uS7Yifmou6gQQxW6HGI7tClNiboauCmYRFl2LTniHKEfP9y1iBvLySpzh+YIyLcSuWkf0am3c6fLn2yhYMb/y+9oZRJFkGmDXJxR/6tzx/IpJjpq50voo+FNQbfQivvI7KOZqqf1WuouniwumTjmAmGYWFVi4hiIfZksGx4sPEHM4Sn581J2oEaaxhqSi8DWzQY+mIbj8ROO6xojOi31C8XWfVr63OCvZeRt0AVWw+tnaO3Gn/KDztDQCQXvF2ZcpF22MeEiQAv7rOgoy0EAInJvWQd2zpfuqMEpV5dRfVZeeXvHuSLlV2Oj13blJfOFDjCFxo5Ze9D+zztq9SttjxEFugBnYlz0oPTz9OGiDp8NbRIXZFADcA6vbnYzh4gG0HYFT0GSkvs9bTrcVh8TPt7clzOIP9Xqtk8Zf423MfWKj0erNSnQpQJbG7B6xxIpcxbmv2eSxgUhyW/8MdELM9fK9lKSYo+T9lv+wSIS5f+zaa9dLUsoEHp+P3Li4LyHoxB/3ygLYt1HhPko5bJrw99QHyrW4ZuRj/XsBbaZSvg4wWyNX5ygTaLXm/6lXRGgPGWqnGhji8FsyXIZjlBJriZAI+EJtLJU7pVokHdE02fDWjMPZefJ0wY=
file:
- "character-entities-html4.js"
- "character-entities-html4.min.js"
on:
tags: true
22 changes: 22 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
(The MIT License)

Copyright (c) 2015 Titus Wormer <mailto:tituswormer@gmail.com>

Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
'Software'), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:

The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, 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.
23 changes: 23 additions & 0 deletions component.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"name": "character-entities-html4",
"version": "0.0.0",
"description": "HTML4 character entity information",
"license": "MIT",
"keywords": [
"html",
"html4",
"entity",
"entities",
"character",
"reference",
"name",
"replacement"
],
"repository": "wooorm/character-entities-html4",
"json": [
"index.json"
],
"scripts": [
"index.js"
]
}
6 changes: 6 additions & 0 deletions history.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<!--mdast setext-->

<!--lint disable no-multiple-toplevel-headings -->

0.0.0 / 2015-12-22
==================
17 changes: 17 additions & 0 deletions index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
/**
* @author Titus Wormer
* @copyright 2015 Titus Wormer
* @license MIT
* @module character-entities-html4
* @fileoverview HTML4 character entity information.
*/

'use strict';

/* eslint-env commonjs */

/*
* Expose.
*/

module.exports = require('./index.json');
Loading

0 comments on commit 914c633

Please sign in to comment.