initial commit
This commit is contained in:
commit
7d3c956806
38 changed files with 31353 additions and 0 deletions
30
.eslintrc
Normal file
30
.eslintrc
Normal file
|
@ -0,0 +1,30 @@
|
|||
{
|
||||
"extends": ["airbnb", "prettier"],
|
||||
"env": {
|
||||
"node": true,
|
||||
"jasmine": true,
|
||||
"jquery": true
|
||||
},
|
||||
"rules": {
|
||||
"no-use-before-define": 0,
|
||||
"func-names": 0,
|
||||
"prefer-arrow-callback": 0,
|
||||
"no-var": 0,
|
||||
"max-len": 0,
|
||||
"guard-for-in": 0,
|
||||
"object-shorthand": 0,
|
||||
"no-restricted-syntax": 0,
|
||||
"prefer-template": 0,
|
||||
"import/no-amd": 0,
|
||||
"space-before-function-paren": 0,
|
||||
"jsx-a11y/href-no-hash": "off",
|
||||
"jsx-a11y/anchor-is-valid": ["warn", { "aspects": ["invalidHref"] }],
|
||||
"import/no-unresolved": 0,
|
||||
"import/extensions": 0
|
||||
},
|
||||
"globals": {
|
||||
"browser": false,
|
||||
"window": true,
|
||||
"document": true
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue