Skip to content

Commit

Permalink
build: Rename to eslint-config-seek (#17)
Browse files Browse the repository at this point in the history
BREAKING CHANGE:
Replace all use of sku with seek.
Before:
.eslintconfig
{
  extend: ['sku']
}
After:
.eslintconfig
{
  extend: ['seek']
}
  • Loading branch information
jahredhope authored Jan 10, 2018
1 parent b76d916 commit 10e9f73
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[![Build Status](https://img.shields.io/travis/seek-oss/eslint-config-sku/master.svg?style=flat-square)](http://travis-ci.org/seek-oss/eslint-config-sku) [![npm](https://img.shields.io/npm/v/eslint-config-sku.svg?style=flat-square)](https://www.npmjs.com/package/eslint-config-sku) [![semantic-release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=flat-square)](https://github.com/semantic-release/semantic-release) [![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg?style=flat-square)](http://commitizen.github.io/cz-cli/)
[![Build Status](https://img.shields.io/travis/seek-oss/eslint-config-seek/master.svg?style=flat-square)](http://travis-ci.org/seek-oss/eslint-config-seek) [![npm](https://img.shields.io/npm/v/eslint-config-seek.svg?style=flat-square)](https://www.npmjs.com/package/eslint-config-seek) [![semantic-release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=flat-square)](https://github.com/semantic-release/semantic-release) [![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg?style=flat-square)](http://commitizen.github.io/cz-cli/)


# eslint-config-sku
# eslint-config-seek

This package includes the shareable ESLint configuration used by [sku](https://github.com/seek-oss/sku).
This package includes the shareable ESLint configuration used by [SEEK](https://github.com/seek-oss/).

## Usage in sku Projects

Expand All @@ -21,11 +21,11 @@ Then create a file named `.eslintrc` with following contents in the root folder

```js
{
"extends": "sku"
"extends": "seek"
}
```

You can override the settings from `eslint-config-sku` by editing the `.eslintrc` file. Learn more about [configuring ESLint](http://eslint.org/docs/user-guide/configuring) on the ESLint website.
You can override the settings from `eslint-config-seek` by editing the `.eslintrc` file. Learn more about [configuring ESLint](http://eslint.org/docs/user-guide/configuring) on the ESLint website.

## License

Expand Down
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,24 +1,24 @@
{
"name": "eslint-config-sku",
"name": "eslint-config-seek",
"version": "0.0.0-development",
"description": "ESLint configuration used by SKU",
"description": "ESLint configuration used by SEEK",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/seek-oss/eslint-config-sku.git"
"url": "git+https://github.com/seek-oss/eslint-config-seek.git"
},
"author": "Seek",
"license": "MIT",
"bugs": {
"url": "https://github.com/seek-oss/eslint-config-sku/issues"
"url": "https://github.com/seek-oss/eslint-config-seek/issues"
},
"scripts": {
"test": "eslint --config 'index.js' foo",
"commit": "git-cz",
"commitmsg": "commitlint -e -x '@commitlint/config-angular'",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"homepage": "https://github.com/seek-oss/eslint-config-sku#readme",
"homepage": "https://github.com/seek-oss/eslint-config-seek#readme",
"dependencies": {
"babel-eslint": "^7.2.3",
"eslint-config-prettier": "^2.3.0",
Expand Down

0 comments on commit 10e9f73

Please sign in to comment.