Skip to content

Commit

Permalink
Week 18, starting work on special notices.
Browse files Browse the repository at this point in the history
  • Loading branch information
roncli committed Aug 22, 2017
1 parent 6ac42bd commit 2af629b
Show file tree
Hide file tree
Showing 4 changed files with 517 additions and 54 deletions.
87 changes: 79 additions & 8 deletions .eslintrc.json
Expand Up @@ -12,14 +12,85 @@
"sourceType": "module",
"ecmaVersion": 6
},
"extends": "eslint:all",
"rules": {
"constructor-super": "warn",
"no-const-assign": "warn",
"no-this-before-super": "warn",
"no-undef": "warn",
"no-unreachable": "warn",
"no-unused-vars": "warn",
"semi": "warn",
"valid-typeof": "warn"
"array-element-newline": "off",
"capitalized-comments": "off",
"class-methods-use-this": "off",
"complexity": "off",
"consistent-this": "off",
"default-case": "off",
"dot-location": "off",
"func-names": "off",
"global-require": "off",
"id-length": "off",
"indent": [
"error", 4, {
"SwitchCase": 1
}
],
"init-declarations": "off",
"line-comment-position": "off",
"linebreak-style": "off",
"max-depth": "off",
"max-len": "off",
"max-lines": "off",
"max-params": "off",
"max-statements": "off",
"multiline-ternary": "off",
"new-cap": [
"error", {
"properties": false
}
],
"newline-per-chained-call": "off",
"no-confusing-arrow": "off",
"no-continue": "off",
"no-empty-function": "off",
"no-implicit-coercion": "off",
"no-inline-comments": "off",
"no-invalid-this": "off",
"no-magic-numbers": "off",
"no-mixed-operators": "off",
"no-mixed-requires": "off",
"no-nested-ternary": "off",
"no-param-reassign": "off",
"no-plusplus": "off",
"no-return-assign": "off",
"no-ternary": "off",
"no-trailing-spaces": [
"error", {
"skipBlankLines": false,
"ignoreComments": false
}
],
"no-underscore-dangle": "off",
"no-useless-constructor": "off",
"no-void": "off",
"object-property-newline": "off",
"one-var": [
"off", {
"const": "always"
}
],
"padded-blocks": "off",
"prefer-destructuring": [
"error", {
"array": false
}, {
"enforceForRenamedProperties": true
}
],
"sort-keys": "off",
"sort-vars": "off",
"space-before-function-paren": "off",
"quote-props": "off",
"valid-jsdoc": [
"error", {
"prefer": {
"return": "return"
}
}
]
}
}
4 changes: 4 additions & 0 deletions app/site/css/index.css
Expand Up @@ -57,6 +57,10 @@ body {
display: block;
}

#display > .tab-pane > .chat > .text .timeout {
text-decoration: line-through;
}

#display > .tab-pane > .chat > .topic {
height: 48px;
flex-shrink: 0;
Expand Down

0 comments on commit 2af629b

Please sign in to comment.