-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from greenbaum/static_addresses
Static addresses: fix make check
- Loading branch information
Showing
9 changed files
with
168 additions
and
56 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,46 @@ | ||
{ | ||
"plugins": [ "joyent" ], | ||
"extends": [ | ||
"eslint:recommended", | ||
"plugin:joyent/style", | ||
"plugin:joyent/lint" | ||
], | ||
"parserOptions": { | ||
"ecmaVersion": 6, | ||
"sourceType": "script", | ||
"ecmaFeatures": { | ||
} | ||
}, | ||
"env": { | ||
"node": true, | ||
"es6": true | ||
}, | ||
"rules": { | ||
// Local rule configuration | ||
"no-unused-vars": [ | ||
"error", | ||
{ | ||
// Track all unused identifiers | ||
"vars": "all", | ||
"args": "all", | ||
"caughtErrors": "all", | ||
// Don't warn on args that start with _, res or req. | ||
// Added stdout and stderr to the standard joyent set. | ||
"argsIgnorePattern": "^(_|res|req|stdout|stderr)", | ||
// Don't warn on catch or var identifiers that start with _ | ||
"caughtIgnorePattern": "^_", | ||
"varsIgnorePattern": "^(_|res|req|stdout|stderr)" | ||
} | ||
], | ||
"max-len": [ | ||
"error", | ||
80, | ||
{ | ||
"tabWidth": 8, | ||
"ignoreComments": false, | ||
"ignoreTrailingComments": false, | ||
"ignoreUrls": true | ||
} | ||
], | ||
} | ||
} |
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
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
Submodule javascriptlint
deleted from
ad5281
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
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