forked from jsx-eslint/eslint-plugin-react
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
47 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
root = true | ||
|
||
[*] | ||
indent_style = space | ||
indent_size = 2 | ||
end_of_line = lf | ||
charset = utf-8 | ||
trim_trailing_whitespace = true | ||
insert_final_newline = true | ||
|
||
[*.md] | ||
trim_trailing_whitespace = false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
node_modules/** | ||
reports/** |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,7 +10,7 @@ lib-cov | |
*.sublime-workspace | ||
pids | ||
logs | ||
results | ||
reports | ||
build | ||
node_modules | ||
npm-debug.log | ||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
language: node_js | ||
node_js: | ||
- 0.10 | ||
- 0.11 | ||
after_success: | ||
- npm run coveralls |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,40 +1,44 @@ | ||
{ | ||
"name": "eslint-plugin-react", | ||
"version": "1.1.0", | ||
"author": "Yannick Croissant <[email protected]>", | ||
"description": "React specific linting rules for ESLint", | ||
"main": "index.js", | ||
"scripts": { | ||
"test": "npm run lint && npm run unit-test --coverage && npm run check-coverage", | ||
"test": "npm run lint && npm run unit-test", | ||
"lint": "eslint ./", | ||
"unit-test": "istanbul test --dir build/coverage node_modules/mocha/bin/_mocha tests/**/*.js -- --recursive --reporter dot", | ||
"check-coverage": "istanbul check-coverage --statement 100 --branch 100 --function 100 --lines 100", | ||
"report-coverage-html": "istanbul report --dir build/coverage html" | ||
"unit-test": "istanbul cover --dir reports/coverage _mocha tests/**/*.js -- --reporter dot", | ||
"coveralls": "cat ./reports/coverage/lcov.info | coveralls" | ||
}, | ||
"files": [ | ||
"LICENSE", | ||
"README.md", | ||
"index.js", | ||
"lib" | ||
], | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/yannickcr/eslint-plugin-react" | ||
}, | ||
"homepage": "https://github.com/yannickcr/eslint-plugin-react", | ||
"bugs": "https://github.com/yannickcr/eslint-plugin-react/issues", | ||
"devDependencies": { | ||
"coveralls": "2.11.2", | ||
"eslint": "0.11.0-alpha.0", | ||
"eslint-tester": "0.3.0", | ||
"istanbul": "0.3.0", | ||
"mocha": "1.21.4" | ||
}, | ||
"keywords": [ | ||
"eslint-plugin", | ||
"eslintplugin", | ||
"eslint", | ||
"react" | ||
], | ||
"devDependencies": { | ||
"eslint": "^0.11.0-alpha.0", | ||
"eslint-tester": "^0.3.0", | ||
"istanbul": "0.3.0", | ||
"mocha": "1.21.4" | ||
}, | ||
"author": "Yannick Croissant (https://github.com/yannickcr)", | ||
"licenses": [ | ||
{ | ||
"type": "MIT", | ||
"url": "https://raw.github.com/yannickcr/eslint-plugin-react/master/LICENSE" | ||
} | ||
], | ||
"bugs": { | ||
"url": "https://github.com/yannickcr/eslint-plugin-react/issues" | ||
}, | ||
"homepage": "https://github.com/yannickcr/eslint-plugin-react" | ||
] | ||
} |