Skip to content

Commit

Permalink
build(crc-model): add linkable names
Browse files Browse the repository at this point in the history
* Add linked names to CRC Models
* Add table of contents.

TODO: enable table of contents links.

#44,#187
  • Loading branch information
gregswindle committed Jan 22, 2018
1 parent 4bc6085 commit 34eba0b
Show file tree
Hide file tree
Showing 37 changed files with 4,357 additions and 928 deletions.
526 changes: 265 additions & 261 deletions .eslintrc.yml

Large diffs are not rendered by default.

17 changes: 13 additions & 4 deletions lib/.eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@
"xss"
],
"extends": [
"eslint:all"
"eslint:all",
"eslint-config-crockford"
],
"globals": {
"document": false,
Expand All @@ -45,6 +46,7 @@
},
"rules": {
"accessor-pairs": "error",
"allowAllPropertiesOnSameLine": false,
"arrow-parens": "warn",
"arrow-spacing": [
"error",
Expand Down Expand Up @@ -190,9 +192,7 @@
"checkLoops": false
}
],
"no-console": [
false
],
"no-console": "warn",
"no-control-regex": "error",
"no-debugger": "error",
"no-delete-var": "error",
Expand Down Expand Up @@ -344,6 +344,15 @@
"no-useless-return": "error",
"no-whitespace-before-property": "error",
"no-with": "error",
"object-curly-newline": [
"error",
{
"ObjectExpression": "always",
"ObjectPattern": {
"multiline": true
}
}
],
"object-property-newline": [
"error",
{
Expand Down

0 comments on commit 34eba0b

Please sign in to comment.