forked from jhaynie/iphonesim
-
Notifications
You must be signed in to change notification settings - Fork 253
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
.eslintrc files based on .eslintrc files in cordova-common
- Loading branch information
Christopher J. Brody
committed
Jun 12, 2018
1 parent
e4c8a3a
commit 297041c
Showing
5 changed files
with
69 additions
and
7 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,3 @@ | ||
{ | ||
"extends": "standard" | ||
} |
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,16 @@ | ||
root: true | ||
|
||
extends: semistandard | ||
|
||
rules: | ||
indent: | ||
- error | ||
- 4 | ||
|
||
no-unused-vars: | ||
- error | ||
- args: after-used | ||
|
||
# excpetions specified in: | ||
# - src/.eslintrc.yml | ||
# - spec/.eslintrc.yml |
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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
env: | ||
jasmine: true | ||
|
||
rules: | ||
# TBD easy fix: | ||
padded-blocks: off | ||
spaced-comment: off | ||
|
||
# TODO resolve: | ||
eol-last: off | ||
semi: off | ||
|
||
# TBD easy resolve: | ||
key-spacing: off | ||
|
||
# FUTURE TBD: | ||
indent: off | ||
quotes: off | ||
space-before-function-paren: off |
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,21 @@ | ||
rules: | ||
# common src exception: | ||
camelcase: off | ||
|
||
# TBD easy fix: | ||
padded-blocks: off | ||
|
||
# TODO resolve: | ||
eqeqeq: off | ||
no-unused-vars: off | ||
node/no-deprecated-api: off | ||
|
||
# TBD easy resolve: | ||
comma-spacing: off | ||
no-useless-escape: off | ||
|
||
# FUTURE TBD: | ||
no-multiple-empty-lines: off | ||
one-var: off | ||
spaced-comment: off | ||
space-before-function-paren: off |