Skip to content

Commit

Permalink
initial code
Browse files Browse the repository at this point in the history
  • Loading branch information
kwltrs committed Dec 27, 2016
0 parents commit 6acaca4
Show file tree
Hide file tree
Showing 5 changed files with 37 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
node_modules
Empty file added CHANGELOG.md
Empty file.
23 changes: 23 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# FFE Stylelint Config

A shareable stylelint configuration object for FFE components

## Usage

```
$ npm install stylelint-config-ffe --save-dev
```

or

```
$ yarn add stylelint-config-ffe --dev
```

Your project's `.stylelintrc`:

```
{
"extends": "stylelint-config-ffe"
}
```
2 changes: 2 additions & 0 deletions index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
module.exports = {
};
11 changes: 11 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"name": "stylelint-config-ffe",
"version": "0.0.1",
"description": "FFE shareable config for stylelint",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC"
}

0 comments on commit 6acaca4

Please sign in to comment.