Skip to content
This repository was archived by the owner on Oct 29, 2019. It is now read-only.

Commit 1f5fcab

Browse files
committedSep 3, 2018
Update dependencies
1 parent ad3ee45 commit 1f5fcab

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

59 files changed

+11597
-7917
lines changed
 

‎.eslintrc

-67
This file was deleted.

‎.eslintrc.js

+72
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
1+
module.exports = {
2+
parser: 'babel-eslint',
3+
extends: ['airbnb', 'prettier'],
4+
env: {
5+
browser: true,
6+
node: true,
7+
es6: true,
8+
mocha: true,
9+
jest: true,
10+
jasmine: true,
11+
},
12+
rules: {
13+
'generator-star-spacing': [0],
14+
'consistent-return': [0],
15+
'react/forbid-prop-types': [0],
16+
'react/jsx-filename-extension': [1, { extensions: ['.js'] }],
17+
'global-require': [1],
18+
'import/prefer-default-export': [0],
19+
'react/jsx-no-bind': [0],
20+
'react/prop-types': [0],
21+
'react/prefer-stateless-function': [0],
22+
'react/jsx-one-expression-per-line': [0],
23+
'react/jsx-wrap-multilines': [
24+
'error',
25+
{
26+
declaration: 'parens-new-line',
27+
assignment: 'parens-new-line',
28+
return: 'parens-new-line',
29+
arrow: 'parens-new-line',
30+
condition: 'parens-new-line',
31+
logical: 'parens-new-line',
32+
prop: 'ignore',
33+
},
34+
],
35+
'no-else-return': [0],
36+
'no-restricted-syntax': [0],
37+
'import/no-extraneous-dependencies': [0],
38+
'no-use-before-define': [0],
39+
'jsx-a11y/no-static-element-interactions': [0],
40+
'jsx-a11y/no-noninteractive-element-interactions': [0],
41+
'jsx-a11y/click-events-have-key-events': [0],
42+
'jsx-a11y/anchor-is-valid': [0],
43+
'no-nested-ternary': [0],
44+
'arrow-body-style': [0],
45+
'import/extensions': [0],
46+
'no-bitwise': [0],
47+
'no-cond-assign': [0],
48+
'import/no-unresolved': [0],
49+
'comma-dangle': [
50+
'error',
51+
{
52+
arrays: 'always-multiline',
53+
objects: 'always-multiline',
54+
imports: 'always-multiline',
55+
exports: 'always-multiline',
56+
functions: 'ignore',
57+
},
58+
],
59+
'object-curly-newline': [0],
60+
'function-paren-newline': [0],
61+
'no-restricted-globals': [0],
62+
'require-yield': [1],
63+
},
64+
parserOptions: {
65+
ecmaFeatures: {
66+
experimentalObjectRestSpread: true,
67+
},
68+
},
69+
settings: {
70+
polyfills: ['fetch', 'promises'],
71+
},
72+
};

0 commit comments

Comments
 (0)
This repository has been archived.