-
-
Notifications
You must be signed in to change notification settings - Fork 717
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add build scripts to eslinting (#91)
* Include build scripts in lint target * add build script .eslintrc overrides Document the overrides used by the build scripts. Most of them should be removed during the future cleanup.
- Loading branch information
Showing
2 changed files
with
22 additions
and
1 deletion.
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,21 @@ | ||
{ | ||
// TODO: most of these overrides should be removed, | ||
// but for now this documents the exceptions used by the code in this dir | ||
"rules": { | ||
"import/no-commonjs": "off", | ||
"flowtype/require-valid-file-annotation": [0], | ||
"prefer-arrow-callback": "off", | ||
"no-var": "off", | ||
"strict": "off", | ||
"no-restricted-properties": "off", | ||
"no-unused-vars": "off", | ||
"prefer-template": "off", | ||
"camelcase": "off", | ||
"prefer-const": "off", | ||
"indent": "off", | ||
"no-case-declarations": "off", | ||
"semi": "off", | ||
"object-curly-spacing": "off", | ||
"no-undef": "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