Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Export config with standard format #19

Merged
merged 1 commit into from
Feb 3, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
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
3 changes: 0 additions & 3 deletions .babelrc

This file was deleted.

1 change: 0 additions & 1 deletion .eslintignore

This file was deleted.

171 changes: 0 additions & 171 deletions .eslintrc

This file was deleted.

3 changes: 2 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
language: node_js

node_js:
- node
- 4
- 5

sudo: false
21 changes: 0 additions & 21 deletions LICENSE

This file was deleted.

6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,10 @@ extends: seegno
Add the following `script` to your `package.json`:

```json
scripts: {
"lint": "eslint ."
{
"scripts": {
"lint": "eslint ."
}
}
```

Expand Down
29 changes: 0 additions & 29 deletions dist/index.js

This file was deleted.

22 changes: 6 additions & 16 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,13 @@
"name": "eslint-config-seegno",
"version": "1.2.1",
"description": "Seegno-flavored ESLint config",
"main": "dist/index.js",
"main": "src",
"options": {
"mocha": "--compilers js:babel/register --recursive --timeout 5000 --require should test"
"mocha": "--require should test"
},
"scripts": {
"build": "rm -rf dist/* && babel src/ --out-dir dist/",
"changelog": "github_changelog_generator --header-label='# Changelog'",
"lint": "eslint .",
"prepublish": "npm test && npm run build",
"lint": "eslint --config src/index.js .",
"test": "mocha $npm_package_options_mocha"
},
"repository": {
Expand All @@ -29,22 +27,14 @@
"url": "https://github.com/seegno/eslint-config-seegno/issues"
},
"homepage": "https://github.com/seegno/eslint-config-seegno#readme",
"dependencies": {
"eslint": "^1.8.0"
},
"devDependencies": {
"babel": "^5.8.23",
"babel-eslint": "^4.1.3",
"eslint": "^1.8.0",
"eslint-plugin-babel": "^2.1.1",
"mocha": "^2.3.3",
"should": "^7.1.0"
},
"peerDependencies": {
"babel-eslint": ">= 4.1",
"eslint": ">= 1.8",
"eslint-plugin-babel": ">= 2.1"
"should": "^8.0.2"
},
"engines": {
"node": ">= 4.0.0"
"node": ">=4"
}
}
Loading