Skip to content

Commit

Permalink
Merge 40a30c2 into 4e4e61a
Browse files Browse the repository at this point in the history
  • Loading branch information
South-Paw committed Oct 9, 2019
2 parents 4e4e61a + 40a30c2 commit e35472b
Show file tree
Hide file tree
Showing 262 changed files with 14,724 additions and 7,331 deletions.
4 changes: 0 additions & 4 deletions .babelrc

This file was deleted.

9 changes: 3 additions & 6 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
.git
node_modules
coverage
dist
public

maps/json/*
maps/svg/*
maps/run.js
dist
coverage
7 changes: 0 additions & 7 deletions .eslintrc

This file was deleted.

16 changes: 16 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
module.exports = {
parser: 'babel-eslint',
extends: ['airbnb', 'prettier'],
plugins: ['prettier', 'jest'],
rules: {
'prettier/prettier': ['error'],
'import/order': ['error', { groups: [['builtin', 'external', 'internal']] }],
'import/prefer-default-export': 'off',
'react/forbid-prop-types': 'off',
'react/jsx-filename-extension': 'off',
'react/jsx-props-no-spreading': 'off',
'react/jsx-one-expression-per-line': 'off',
'jsx-a11y/accessible-emoji': 'off',
'no-console': 'off',
},
};
6 changes: 4 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,12 @@
node_modules
yarn-error.log

# generated folders
coverage
# build directories
dist
public

# generated folders
coverage

# OS generated files
.DS_Store
5 changes: 5 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
.git
node_modules
public
dist
coverage
5 changes: 3 additions & 2 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"endOfLine": "lf",
"printWidth": 120,
"singleQuote": true,
"trailingComma": "all",
"printWidth": 120
"trailingComma": "all"
}
4 changes: 0 additions & 4 deletions .storybook/.babelrc

This file was deleted.

85 changes: 0 additions & 85 deletions .storybook/components/Example.js

This file was deleted.

191 changes: 0 additions & 191 deletions .storybook/components/Wrapper.js

This file was deleted.

3 changes: 0 additions & 3 deletions .storybook/components/index.js

This file was deleted.

24 changes: 0 additions & 24 deletions .storybook/config.js

This file was deleted.

5 changes: 4 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
language: node_js

node_js:
- "11"
- '12'

before_script:
- yarn docs:install

script:
- yarn lint
Expand Down
Loading

0 comments on commit e35472b

Please sign in to comment.