Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
mmasi-attivio committed Feb 7, 2018
0 parents commit 1c391f6
Show file tree
Hide file tree
Showing 132 changed files with 27,830 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
node_modules
webpack.config.js
img
18 changes: 18 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
module.exports = {
"env": {
"browser": true
},
"parser": "babel-eslint",
"extends": "airbnb",
"plugins": [
"eslint-plugin-flowtype",
],
"rules": {
"strict": 0,
"arrow-body-style": ["error", "always"],
"react/prefer-stateless-function": 0,
"max-len": [1, 132, 2],
"jsx-a11y/label-has-for": 0,
"flowtype/define-flow-type": 1,
},
};
19 changes: 19 additions & 0 deletions .flowconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
[ignore]


[include]

[libs]

[options]
esproposal.class_static_fields=enable
esproposal.class_instance_fields=enable
suppress_type=$FlowIssue
suppress_type=$FlowFixMe
module.name_mapper='.*\(.xml\)' -> 'empty/object'
module.name_mapper='.*\(.css\)' -> 'empty/object'
module.name_mapper='.*\(.less\)' -> 'empty/object'
unsafe.enable_getters_and_setters=true
emoji=true

[lints]
74 changes: 74 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,74 @@
# Created by https://www.gitignore.io

### Node ###
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# Runtime data
pids
*.pid
*.seed
*.pid.lock

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov

# Coverage directory used by tools like istanbul
coverage

# nyc test coverage
.nyc_output

# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
.grunt

# Bower dependency directory (https://bower.io/)
bower_components

# node-waf configuration
.lock-wscript

# Compiled binary addons (http://nodejs.org/api/addons.html)
build/Release

# Dependency directories
node_modules/
jspm_packages/

# Typescript v1 declaration files
typings/

# Optional npm cache directory
.npm

# Optional eslint cache
.eslintcache

# Optional REPL history
.node_repl_history

# Output of 'npm pack'
*.tgz

# Yarn Integrity file
.yarn-integrity

# dotenv environment variables file
.env

### macOS ###
*.DS_Store
.AppleDouble
.LSOverride


# End of https://www.gitignore.io

/es
/dist
/lib
/umd
7 changes: 7 additions & 0 deletions nwb.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
module.exports = {
type: 'react-component',
npm: {
esModules: true,
umd: false,
},
};
Loading

0 comments on commit 1c391f6

Please sign in to comment.