25 changed files with 223 additions and 128 deletions
@ -0,0 +1,51 @@
|
||||
{ |
||||
"env": { |
||||
"browser": true, |
||||
"es6": true, |
||||
"jquery": true |
||||
}, |
||||
"extends": [ |
||||
"eslint:recommended" |
||||
], |
||||
"ignorePatterns": ["dist/", "node_modules/"], |
||||
"rules": { |
||||
"block-scoped-var": "error", |
||||
"consistent-return": "error", |
||||
"curly": "error", |
||||
"default-case": "error", |
||||
"default-param-last": ["error"], |
||||
"dot-notation": "error", |
||||
"eqeqeq": "error", |
||||
"guard-for-in": "error", |
||||
"max-classes-per-file": "error", |
||||
"no-alert": "error", |
||||
"no-caller": "error", |
||||
"no-else-return": "error", |
||||
"no-empty-function": "error", |
||||
"no-floating-decimal": "error", |
||||
"no-implicit-coercion": "error", |
||||
"no-multi-spaces": "error", |
||||
"no-multi-str": "error", |
||||
"no-param-reassign": "error", |
||||
"no-return-assign": "error", |
||||
"no-return-await": "error", |
||||
"no-self-compare": "error", |
||||
"no-throw-literal": "error", |
||||
"no-useless-concat": "error", |
||||
"radix": ["error", "as-needed"], |
||||
"require-await": "error", |
||||
"yoda": "error", |
||||
"no-shadow": "off", |
||||
"prefer-destructuring": ["error", { "array": false, "object": true }], |
||||
"padding-line-between-statements": [ |
||||
"error", |
||||
{ "blankLine": "always", "prev": "import", "next": "export" }, |
||||
{ "blankLine": "always", "prev": "export", "next": "export" }, |
||||
{ "blankLine": "always", "prev": "*", "next": "return" } |
||||
] |
||||
}, |
||||
"parserOptions": { |
||||
"ecmaVersion": 6, |
||||
"sourceType": "module" |
||||
} |
||||
} |
@ -0,0 +1,5 @@
|
||||
{ |
||||
"tabWidth": 4, |
||||
"printWidth": 120, |
||||
"endOfLine": "auto" |
||||
} |
@ -1,18 +1,22 @@
|
||||
.d-none { |
||||
display: none !important; |
||||
display: none !important; |
||||
} |
||||
|
||||
.float-right { |
||||
float: right; |
||||
float: right; |
||||
} |
||||
|
||||
td, th, tr, tbody, tr:nth-child(2n) { |
||||
background-color: inherit; |
||||
border: none; |
||||
padding-left: 0; |
||||
padding-right: 0; |
||||
td, |
||||
th, |
||||
tr, |
||||
tbody, |
||||
tr:nth-child(2n) { |
||||
background-color: inherit; |
||||
border: none; |
||||
padding-left: 0; |
||||
padding-right: 0; |
||||
} |
||||
|
||||
img { |
||||
background-color: white; |
||||
background-color: white; |
||||
} |
||||
|
Loading…
Reference in new issue