This repository has been archived by the owner on Jun 28, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 361
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Eslint added * eslint in travis * ayah require * Fixed * fixed bug that was preventing ayah transition on audioplayer * fix autocomplete thing
- Loading branch information
Showing
60 changed files
with
1,433 additions
and
1,183 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
src/components/SurahInfo/htmls/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,40 +1,54 @@ | ||
{ | ||
"parser": "babel-eslint", | ||
"extends": "airbnb", | ||
"env": { | ||
"es6": true, | ||
"node": true, | ||
"browser": true, | ||
"jquery": true | ||
}, | ||
"ecmaFeatures": { | ||
"arrowFunctions": true, | ||
"binaryLiterals": true, | ||
"blockBindings": true, | ||
"classes": true, | ||
"defaultParams": true, | ||
"destructuring": true, | ||
"forOf": true, | ||
"generators": true, | ||
"modules": true, | ||
"objectLiteralComputedProperties": true, | ||
"objectLiteralDuplicateProperties": true, | ||
"objectLiteralShorthandMethods": true, | ||
"objectLiteralShorthandProperties": true, | ||
"octalLiterals": true, | ||
"regexUFlag": true, | ||
"regexYFlag": true, | ||
"spread": true, | ||
"superInFunctions": true, | ||
"templateStrings": true, | ||
"unicodeCodePointEscapes": true, | ||
"globalReturn": true, | ||
"jsx": false | ||
"node": true, | ||
"mocha": true, | ||
"es6": true | ||
}, | ||
"rules": { | ||
"strict": 0, | ||
"indent": [2, 2], | ||
"quotes": [2, "single"], | ||
"no-unused-vars": 0 | ||
"react/no-multi-comp": 0, | ||
"import/default": 0, | ||
"import/no-duplicates": 0, | ||
"import/named": 0, | ||
"import/namespace": 0, | ||
"import/no-unresolved": 0, | ||
"import/no-named-as-default": 2, | ||
// Temporarirly disabled due to a possible bug in babel-eslint (todomvc example) | ||
"block-scoped-var": 0, | ||
// Temporarily disabled for test/* until babel/babel-eslint#33 is resolved | ||
"padded-blocks": 0, | ||
"comma-dangle": 0, // not sure why airbnb turned this on. gross! | ||
"indent": [2, 2, {"SwitchCase": 1}], | ||
"no-console": 0, | ||
"no-alert": 0, | ||
"object-curly-spacing": 0, | ||
"no-case-declarations": 0 | ||
}, | ||
"plugins": [ | ||
"react", "import" | ||
], | ||
"settings": { | ||
"import/parser": "babel-eslint", | ||
"import/resolve": { | ||
moduleDirectory: ["node_modules", "src"] | ||
} | ||
}, | ||
"parserOptions":{ | ||
"ecmaFeatures": { | ||
"experimentalObjectRestSpread": true | ||
} | ||
}, | ||
"plugins": ["react"] | ||
"globals": { | ||
"__DEVELOPMENT__": true, | ||
"__CLIENT__": true, | ||
"__SERVER__": true, | ||
"__DISABLE_SSR__": true, | ||
"__DEVTOOLS__": true, | ||
"socket": true, | ||
"webpackIsomorphicTools": true, | ||
ga: true, | ||
Raven: true | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.