Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 0 additions & 9 deletions .babelrc

This file was deleted.

22 changes: 0 additions & 22 deletions .eslintrc

This file was deleted.

Empty file removed CHANGELOG.md
Empty file.
Empty file removed LICENSE
Empty file.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
#[React Lightning Design System](https://mashmatrix.github.io/react-lightning-design-system/)
# [React Lightning Design System](https://mashmatrix.github.io/react-lightning-design-system/)
[![Build Status](https://travis-ci.org/mashmatrix/react-lightning-design-system.svg?branch=master)](https://travis-ci.org/mashmatrix/react-lightning-design-system)
[![npm package](https://img.shields.io/npm/v/react-lightning-design-system.svg)](https://www.npmjs.org/package/react-lightning-design-system)


[Salesforce Lightning Design System](http://www.lightningdesignsystem.com/) components built with React.

Expand Down
31 changes: 31 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -83,5 +83,36 @@
"jest": {
"testRegex": "(/test/.*|\\.(test|spec))\\.js$",
"collectCoverage": true
},
"babel": {
"presets": ["es2015", "stage-2", "react"],
"plugins": [
"transform-object-rest-spread",
"transform-runtime",
"transform-class-properties"
],
"sourceMaps": "inline"
},
"eslintConfig": {
"parser": "babel-eslint",
"extends": "airbnb",
"env": {
"browser": true
},
"rules": {
"jsx-quotes": [2, "prefer-single"],
"no-nested-ternary": 0,
"react/jsx-curly-spacing": 0,
"react/no-multi-comp": 0,
"react/jsx-no-bind": 0,
"react/jsx-filename-extension": [1, { "extensions": [".js", ".jsx"] }],
"jsx-a11y/no-static-element-interactions": 0,
"class-methods-use-this": 0,
"react/no-unused-prop-types": 1,
"import/no-extraneous-dependencies": ["error", {
"devDependencies": true
}],
"jsx-a11y/label-has-for": 1
}
}
}